Skip to content

Commit 8cd88de

Browse files
authoredNov 21, 2024··
feat: add xUnit testing harness (#3044)
1 parent 876263f commit 8cd88de

15 files changed

+1024
-6
lines changed
 

‎src/Playwright.Examples/Program.cs

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@
2929
var page = await browser.NewPageAsync();
3030
await page.GotoAsync("https://playwright.dev/dotnet");
3131
await page.ScreenshotAsync(new PageScreenshotOptions { Path = "screenshot.png" });
32-

‎src/Playwright.TestingHarnessTest/Playwright.TestingHarnessTest.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@
1313
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
1414
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
1515
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
16+
<PackageReference Include="xunit" Version="2.9.2" />
17+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
1618
</ItemGroup>
1719

1820
<ItemGroup>
1921
<ProjectReference Include="..\Playwright\Playwright.csproj" />
2022
<ProjectReference Include="..\Playwright.MSTest\Playwright.MSTest.csproj" />
2123
<ProjectReference Include="..\Playwright.NUnit\Playwright.NUnit.csproj" />
24+
<ProjectReference Include="..\Playwright.Xunit\Playwright.Xunit.csproj" />
2225
</ItemGroup>
2326
</Project>

‎src/Playwright.TestingHarnessTest/tests/baseTest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const test = base.extend<{
2424
const testDir = testInfo.outputPath();
2525
const testClassName = testInfo.titlePath.join(' ').replace(/[^\w]/g, '');
2626
for (const [fileName, fileContent] of Object.entries(files)) {
27-
await fs.promises.writeFile(path.join(testDir, fileName), unintentFile(fileContent).replace('<class-name>', testClassName));
27+
await fs.promises.writeFile(path.join(testDir, fileName), unintentFile(fileContent).replaceAll('<class-name>', testClassName));
2828
}
2929
const trxFile = path.join(testDir, 'result.trx');
3030
command += ` --logger "trx;logfilename=${trxFile}" --logger "console;verbosity=detailed" --filter "${testClassName}" ${path.join('..', '..')}`;

‎src/Playwright.TestingHarnessTest/tests/mstest/basic.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ test('should be able to make the browser headed via the env', async ({ runTest }
182182
expect(result.stdout).not.toContain("Headless")
183183
});
184184

185-
test('should be able to to parse BrowserName and LaunchOptions.Headless from runsettings', async ({ runTest }) => {
185+
test('should be able to parse BrowserName and LaunchOptions.Headless from runsettings', async ({ runTest }) => {
186186
const result = await runTest({
187187
'ExampleTests.cs': `
188188
using System;
@@ -445,6 +445,7 @@ test.describe('Expect() timeout', () => {
445445
expect(result.total).toBe(1);
446446
expect(result.rawStdout).toContain("LocatorAssertions.ToHaveTextAsync with timeout 5000ms")
447447
});
448+
448449
test('should be able to override it via each Expect() call', async ({ runTest }) => {
449450
const result = await runTest({
450451
'ExampleTests.cs': `

‎src/Playwright.TestingHarnessTest/tests/nunit/basic.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ test('should be able to make the browser headed via the env', async ({ runTest }
181181
expect(result.stdout).not.toContain("Headless")
182182
});
183183

184-
test('should be able to to parse BrowserName and LaunchOptions.Headless from runsettings', async ({ runTest }) => {
184+
test('should be able to parse BrowserName and LaunchOptions.Headless from runsettings', async ({ runTest }) => {
185185
const result = await runTest({
186186
'ExampleTests.cs': `
187187
using System;
@@ -440,6 +440,7 @@ test.describe('Expect() timeout', () => {
440440
expect(result.total).toBe(1);
441441
expect(result.rawStdout).toContain("LocatorAssertions.ToHaveTextAsync with timeout 5000ms")
442442
});
443+
443444
test('should be able to override it via each Expect() call', async ({ runTest }) => {
444445
const result = await runTest({
445446
'ExampleTests.cs': `

0 commit comments

Comments
 (0)
Please sign in to comment.