Files
webawesome/web-test-runner.config.js
Lea Verou dd7b673328 Run Prettier on repo
Turns out `prettier-plugin-organize-imports` sorts imports differently than the old one so this will prevent spreading the change across multiple commits whenever we touch a file (and potentially introducing conflicts)
2024-12-14 17:01:35 -05:00

96 lines
3.2 KiB
JavaScript

import { litSsrPlugin } from '@lit-labs/testing/web-test-runner-ssr-plugin.js';
import { esbuildPlugin } from '@web/dev-server-esbuild';
import { playwrightLauncher } from '@web/test-runner-playwright';
import { readFileSync } from 'fs';
import { globbySync } from 'globby';
import * as os from 'os';
import * as process from 'process';
import { getAllComponents } from './scripts/shared.js';
// Get a list of all Web Awesome component imports for the test runner
const metadata = JSON.parse(readFileSync('./dist/custom-elements.json'), 'utf8');
const serverComponents = [];
const componentImports = [];
getAllComponents(metadata).forEach(component => {
const name = component.tagName.replace(/^wa-/, '');
serverComponents.push(`/dist/components/${name}/${name}.js`);
componentImports.push(`/dist-cdn/components/${name}/${name}.js`);
});
// os.availableParallelism only available as of Node 18.14.0 , maybe dont need the fallback?
// I've found the browser is more stable if you give it concurrency up front.
const cores = os.availableParallelism?.() ?? os.cpus.length;
const concurrency = Math.max(Math.floor(cores / 3), 1);
export default {
rootDir: '.',
files: 'src/**/*.test.ts', // "default" group
concurrentBrowsers: 3,
nodeResolve: {
exportConditions: ['production', 'default']
},
testFramework: {
config: {
timeout: 3000,
retries: 1,
// fails the whole test suite on first failure rather than letting the whole test suite run.
bail: process.env['FAIL_FAST'] === 'true'
}
},
plugins: [
esbuildPlugin({
ts: true,
target: 'es2020'
}),
litSsrPlugin()
],
browsers: [
playwrightLauncher({ product: 'chromium', concurrency }),
playwrightLauncher({ product: 'firefox', concurrency }),
playwrightLauncher({ product: 'webkit', concurrency })
],
testRunnerHtml: testFramework => `
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="/dist/styles/themes/default.css">
<script>
window.process = {env: { NODE_ENV: "production" }}
</script>
<script>
window.serverComponents = [
${serverComponents.map(str => `"${str}"`).join(',\n')}
]
window.clientComponents = [
${componentImports.map(str => `"${str}"`).join(',\n')}
]
window.SSR_ONLY = ${process.env['SSR_ONLY'] === 'true'}
window.CSR_ONLY = ${process.env['CSR_ONLY'] === 'true'}
</script>
<script type="module">
;(async () => {
await import('@lit-labs/ssr-client/lit-element-hydrate-support.js')
await Promise.allSettled(window.clientComponents.map(str => import(str)));
})()
</script>
<script type="module" src="${testFramework}"></script>
</head>
<body>
</body>
</html>
`,
// Create a named group for every test file to enable running single tests. If a test file is `split-panel.test.ts`
// then you can run `npm run test -- --group split-panel` to run only that component's tests.
groups: globbySync('src/**/*.test.ts').map(path => {
const groupName = path.match(/^.*\/(?<fileName>.*)\.test\.ts/).groups.fileName;
return {
name: groupName,
files: path
};
})
};