fix(global setup): simplify ordering
This commit is contained in:
parent
26a7dd4dd4
commit
43691c3468
|
|
@ -97,12 +97,11 @@ export function createGlobalSetupTasks(config: FullConfigInternal) {
|
||||||
const tasks: Task<TestRun>[] = [];
|
const tasks: Task<TestRun>[] = [];
|
||||||
if (!config.configCLIOverrides.preserveOutputDir && !process.env.PW_TEST_NO_REMOVE_OUTPUT_DIRS)
|
if (!config.configCLIOverrides.preserveOutputDir && !process.env.PW_TEST_NO_REMOVE_OUTPUT_DIRS)
|
||||||
tasks.push(createRemoveOutputDirsTask());
|
tasks.push(createRemoveOutputDirsTask());
|
||||||
tasks.push(...createPluginSetupTasks(config));
|
tasks.push(
|
||||||
if (config.globalSetups.length || config.globalTeardowns.length) {
|
...createPluginSetupTasks(config),
|
||||||
const length = Math.max(config.globalSetups.length, config.globalTeardowns.length);
|
...config.globalTeardowns.toReversed().map(file => createGlobalTeardownTask(file, config)),
|
||||||
for (let i = 0; i < length; i++)
|
...config.globalSetups.map(file => createGlobalSetupTask(file, config)),
|
||||||
tasks.push(createGlobalSetupTask(i, length));
|
);
|
||||||
}
|
|
||||||
return tasks;
|
return tasks;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -164,28 +163,35 @@ function createPluginBeginTask(plugin: TestRunnerPluginRegistration): Task<TestR
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function createGlobalSetupTask(index: number, length: number): Task<TestRun> {
|
function createGlobalSetupTask(file: string, config: FullConfigInternal): Task<TestRun> {
|
||||||
let globalSetupResult: any;
|
|
||||||
let globalSetupFinished = false;
|
|
||||||
let teardownHook: any;
|
|
||||||
|
|
||||||
let title = 'global setup';
|
let title = 'global setup';
|
||||||
if (length > 1)
|
if (config.globalSetups.length > 1)
|
||||||
title += ` #${index}`;
|
title += ` (${file})`;
|
||||||
|
|
||||||
|
let globalSetupResult: any;
|
||||||
return {
|
return {
|
||||||
title,
|
title,
|
||||||
setup: async ({ config }) => {
|
setup: async ({ config }) => {
|
||||||
const setupHook = config.globalSetups[index] ? await loadGlobalHook(config, config.globalSetups[index]) : undefined;
|
const setupHook = await loadGlobalHook(config, file);
|
||||||
teardownHook = config.globalTeardowns[index] ? await loadGlobalHook(config, config.globalTeardowns[index]) : undefined;
|
globalSetupResult = await setupHook(config.config);
|
||||||
globalSetupResult = setupHook ? await setupHook(config.config) : undefined;
|
|
||||||
globalSetupFinished = true;
|
|
||||||
},
|
},
|
||||||
teardown: async ({ config }) => {
|
teardown: async () => {
|
||||||
if (typeof globalSetupResult === 'function')
|
if (typeof globalSetupResult === 'function')
|
||||||
await globalSetupResult();
|
await globalSetupResult();
|
||||||
if (globalSetupFinished)
|
},
|
||||||
await teardownHook?.(config.config);
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function createGlobalTeardownTask(file: string, config: FullConfigInternal): Task<TestRun> {
|
||||||
|
let title = 'global teardown';
|
||||||
|
if (config.globalTeardowns.length > 1)
|
||||||
|
title += ` (${file})`;
|
||||||
|
|
||||||
|
return {
|
||||||
|
title,
|
||||||
|
teardown: async ({ config }) => {
|
||||||
|
const teardownHook = await loadGlobalHook(config, file);
|
||||||
|
await teardownHook(config.config);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,7 @@ test('globalTeardown runs after failures', async ({ runInlineTest }) => {
|
||||||
expect(output).toContain('teardown=42');
|
expect(output).toContain('teardown=42');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('globalTeardown does not run when globalSetup times out', async ({ runInlineTest }) => {
|
test('globalTeardown still runs when globalSetup times out', async ({ runInlineTest }) => {
|
||||||
const result = await runInlineTest({
|
const result = await runInlineTest({
|
||||||
'playwright.config.ts': `
|
'playwright.config.ts': `
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
|
|
@ -135,7 +135,7 @@ test('globalTeardown does not run when globalSetup times out', async ({ runInlin
|
||||||
`,
|
`,
|
||||||
});
|
});
|
||||||
expect(result.output).toContain('Timed out waiting 1s for the global setup to run');
|
expect(result.output).toContain('Timed out waiting 1s for the global setup to run');
|
||||||
expect(result.output).not.toContain('teardown=');
|
expect(result.output).toContain('teardown=');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('globalSetup should work with sync function', async ({ runInlineTest }) => {
|
test('globalSetup should work with sync function', async ({ runInlineTest }) => {
|
||||||
|
|
@ -395,9 +395,9 @@ test('globalSetup should support multiple', async ({ runInlineTest }) => {
|
||||||
globalTeardown: ['./globalTeardown1.ts', './globalTeardown2.ts'],
|
globalTeardown: ['./globalTeardown1.ts', './globalTeardown2.ts'],
|
||||||
};
|
};
|
||||||
`,
|
`,
|
||||||
'globalSetup1.ts': `module.exports = () => { console.log('%%globalSetup1'); return () => { console.log('%%globalSetup1Function'); throw new Error('kaboom'); } };`,
|
'globalSetup1.ts': `module.exports = () => { console.log('%%globalSetup1'); return () => { console.log('%%callback1'); throw new Error('kaboom'); } };`,
|
||||||
'globalSetup2.ts': `module.exports = () => console.log('%%globalSetup2');`,
|
'globalSetup2.ts': `module.exports = () => console.log('%%globalSetup2');`,
|
||||||
'globalSetup3.ts': `module.exports = () => { console.log('%%globalSetup3'); return () => console.log('%%globalSetup3Function'); }`,
|
'globalSetup3.ts': `module.exports = () => { console.log('%%globalSetup3'); return () => console.log('%%callback3'); }`,
|
||||||
'globalSetup4.ts': `module.exports = () => console.log('%%globalSetup4');`,
|
'globalSetup4.ts': `module.exports = () => console.log('%%globalSetup4');`,
|
||||||
'globalTeardown1.ts': `module.exports = () => console.log('%%globalTeardown1')`,
|
'globalTeardown1.ts': `module.exports = () => console.log('%%globalTeardown1')`,
|
||||||
'globalTeardown2.ts': `module.exports = () => { console.log('%%globalTeardown2'); throw new Error('kaboom'); }`,
|
'globalTeardown2.ts': `module.exports = () => { console.log('%%globalTeardown2'); throw new Error('kaboom'); }`,
|
||||||
|
|
@ -419,10 +419,10 @@ test('globalSetup should support multiple', async ({ runInlineTest }) => {
|
||||||
'globalSetup4',
|
'globalSetup4',
|
||||||
'test a',
|
'test a',
|
||||||
'test b',
|
'test b',
|
||||||
'globalSetup3Function',
|
'callback3',
|
||||||
|
'callback1',
|
||||||
|
'globalTeardown1',
|
||||||
'globalTeardown2',
|
'globalTeardown2',
|
||||||
'globalSetup1Function',
|
|
||||||
// 'globalTeardown1' is missing, because globalSetup1Function errored out.
|
|
||||||
]);
|
]);
|
||||||
expect(result.output).toContain('Error: kaboom');
|
expect(result.output).toContain('Error: kaboom');
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue