Skip to content

Commit 5e653d2

Browse files
committed
Integrating Azure DevOps Pipeline
1 parent 0a3bcf7 commit 5e653d2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Chapter01/04_Codegen_Test.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { test, expect } from '@playwright/test';
33
/**
44
* Author Testers Talk
55
*/
6-
test('Codegen test case', { tag: ['@PlaywrightWithJenkins'] }, async ({ page }) => {
6+
test('Codegen test case', { tag: ['@PlaywrightWithJenkins', '@PlaywrightWithAzureDevOpsPipeline'] }, async ({ page }) => {
77
await page.goto('https://www.youtube.com/');
88
await page.getByPlaceholder('Search').first().click();
99
await page.getByPlaceholder('Search').first().fill('playwright by testers talk ');
@@ -16,7 +16,7 @@ test('Codegen test case', { tag: ['@PlaywrightWithJenkins'] }, async ({ page })
1616
/**
1717
* Author Testers Talk
1818
*/
19-
test('Test 2 will fail', { tag: ['@PlaywrightWithJenkins'] }, async ({ page }) => {
19+
test('Test 2 will fail', { tag: ['@PlaywrightWithJenkins', '@PlaywrightWithAzureDevOpsPipeline'] }, async ({ page }) => {
2020
await page.goto('https://www.youtube.com/@testerstalk');
2121
expect(true).toBe(false);
2222
});

tests/Chapter06/08_DELETE_API_Request.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test.use({
1515
/**
1616
* Author Testers Talk
1717
*/
18-
test('Create DELETE API Request using playwright & typescript',{tag :['@PlaywrightWithJenkins']}, async ({ request }) => {
18+
test('Create DELETE API Request using playwright & typescript', { tag: ['@PlaywrightWithJenkins', '@PlaywrightWithAzureDevOpsPipeline'] }, async ({ request }) => {
1919

2020
const firstName = faker.person.firstName();
2121
const lastName = faker.person.lastName();

0 commit comments

Comments
 (0)