2021-06-07 03:09:53 +03:00
|
|
|
|
/**
|
|
|
|
|
* 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 { test, expect, stripAscii } from './playwright-test-fixtures';
|
|
|
|
|
|
|
|
|
|
test('render each test with project name', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'playwright.config.ts': `
|
|
|
|
|
module.exports = { projects: [
|
|
|
|
|
{ name: 'foo' },
|
|
|
|
|
{ name: 'bar' },
|
|
|
|
|
] };
|
|
|
|
|
`,
|
|
|
|
|
'a.test.ts': `
|
2021-06-07 08:07:07 +03:00
|
|
|
|
const { test } = pwt;
|
2021-06-07 03:09:53 +03:00
|
|
|
|
test('fails', async ({}) => {
|
|
|
|
|
expect(1).toBe(0);
|
|
|
|
|
});
|
|
|
|
|
test('passes', async ({}) => {
|
|
|
|
|
expect(0).toBe(0);
|
|
|
|
|
});
|
2021-08-12 02:44:19 +03:00
|
|
|
|
test.skip('skipped', async () => {
|
|
|
|
|
});
|
2021-06-07 03:09:53 +03:00
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'list' });
|
|
|
|
|
const text = stripAscii(result.output);
|
2021-06-22 20:04:24 +03:00
|
|
|
|
const positiveStatusMarkPrefix = process.platform === 'win32' ? 'ok' : '✓ ';
|
|
|
|
|
const negativateStatusMarkPrefix = process.platform === 'win32' ? 'x ' : '✘ ';
|
2021-08-12 02:44:19 +03:00
|
|
|
|
expect(text).toContain(`${negativateStatusMarkPrefix} [foo] › a.test.ts:6:7 › fails`);
|
|
|
|
|
expect(text).toContain(`${negativateStatusMarkPrefix} [bar] › a.test.ts:6:7 › fails`);
|
2021-07-17 01:23:50 +03:00
|
|
|
|
expect(text).toContain(`${positiveStatusMarkPrefix} [foo] › a.test.ts:9:7 › passes`);
|
|
|
|
|
expect(text).toContain(`${positiveStatusMarkPrefix} [bar] › a.test.ts:9:7 › passes`);
|
2021-08-12 02:44:19 +03:00
|
|
|
|
expect(text).toContain(`- [foo] › a.test.ts:12:12 › skipped`);
|
|
|
|
|
expect(text).toContain(`- [bar] › a.test.ts:12:12 › skipped`);
|
2021-06-07 03:09:53 +03:00
|
|
|
|
expect(result.exitCode).toBe(1);
|
|
|
|
|
});
|
2021-08-18 02:41:36 +03:00
|
|
|
|
|
|
|
|
|
test('render steps', async ({ runInlineTest }) => {
|
|
|
|
|
const result = await runInlineTest({
|
|
|
|
|
'a.test.ts': `
|
|
|
|
|
const { test } = pwt;
|
|
|
|
|
test('passes', async ({}) => {
|
|
|
|
|
await test.step('outer 1.0', async () => {
|
|
|
|
|
await test.step('inner 1.1', async () => {});
|
|
|
|
|
await test.step('inner 1.1', async () => {});
|
|
|
|
|
});
|
|
|
|
|
await test.step('outer 2.0', async () => {
|
|
|
|
|
await test.step('inner 2.1', async () => {});
|
|
|
|
|
await test.step('inner 2.1', async () => {});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
`,
|
|
|
|
|
}, { reporter: 'list' });
|
|
|
|
|
const text = stripAscii(result.output);
|
|
|
|
|
const lines = text.split('\n').filter(l => l.startsWith('0 :'));
|
|
|
|
|
lines.pop(); // Remove last item that contains [v] and time in ms.
|
|
|
|
|
expect(lines).toEqual([
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 1.0',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 1.0 › inner 1.1',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 1.0',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 1.0 › inner 1.1',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 1.0',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 2.0',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 2.0 › inner 2.1',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 2.0',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 2.0 › inner 2.1',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes › outer 2.0',
|
|
|
|
|
'0 : a.test.ts:6:7 › passes',
|
|
|
|
|
]);
|
|
|
|
|
});
|