mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
f745bf1fbc
- Source now lives at `src/test`. - Former folio tests live at `tests/playwright-test`. - We use `src/test/internal.ts` that exposes base test without Playwright fixtures for most tests (to avoid modifications for now). - Test types live in `types/testFoo.d.ts`. - Stable test runner is installed to `tests/config/test-runner` during `npm install`. - All deps including test-only are now listed in `package.json`. Non-test deps must also be listed in `build_package.js` to get included.
82 lines
2.5 KiB
TypeScript
82 lines
2.5 KiB
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import * as path from 'path';
|
|
import { test, expect } from './playwright-test-fixtures';
|
|
|
|
test('should support spec.ok', async ({ runInlineTest }) => {
|
|
const result = await runInlineTest({
|
|
'a.test.js': `
|
|
const { test } = folio;
|
|
test('math works!', async ({}) => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
test('math fails!', async ({}) => {
|
|
expect(1 + 1).toBe(3);
|
|
});
|
|
`
|
|
}, { });
|
|
expect(result.exitCode).toBe(1);
|
|
expect(result.report.suites[0].specs[0].ok).toBe(true);
|
|
expect(result.report.suites[0].specs[1].ok).toBe(false);
|
|
});
|
|
|
|
test('should report projects', async ({ runInlineTest }, testInfo) => {
|
|
const result = await runInlineTest({
|
|
'playwright.config.ts': `
|
|
module.exports = {
|
|
retries: 2,
|
|
projects: [
|
|
{
|
|
timeout: 5000,
|
|
name: 'p1',
|
|
metadata: { foo: 'bar' },
|
|
},
|
|
{
|
|
timeout: 8000,
|
|
name: 'p2',
|
|
metadata: { bar: 42 },
|
|
}
|
|
]
|
|
};
|
|
`,
|
|
'a.test.js': `
|
|
const { test } = folio;
|
|
test('math works!', async ({}) => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
`
|
|
}, { });
|
|
expect(result.exitCode).toBe(0);
|
|
const projects = result.report.config.projects;
|
|
const testDir = testInfo.outputDir.split(path.sep).join(path.posix.sep);
|
|
|
|
expect(projects[0].name).toBe('p1');
|
|
expect(projects[0].retries).toBe(2);
|
|
expect(projects[0].timeout).toBe(5000);
|
|
expect(projects[0].metadata).toEqual({ foo: 'bar' });
|
|
expect(projects[0].testDir).toBe(testDir);
|
|
|
|
expect(projects[1].name).toBe('p2');
|
|
expect(projects[1].retries).toBe(2);
|
|
expect(projects[1].timeout).toBe(8000);
|
|
expect(projects[1].metadata).toEqual({ bar: 42 });
|
|
expect(projects[1].testDir).toBe(testDir);
|
|
|
|
expect(result.report.suites[0].specs[0].tests[0].projectName).toBe('p1');
|
|
expect(result.report.suites[0].specs[0].tests[1].projectName).toBe('p2');
|
|
});
|