2024-09-11 10:25:42 -04:00
|
|
|
import { litSsrPlugin } from '@lit-labs/testing/web-test-runner-ssr-plugin.js';
|
2024-12-14 17:00:28 -05:00
|
|
|
import { esbuildPlugin } from '@web/dev-server-esbuild';
|
2023-01-17 10:44:07 -05:00
|
|
|
import { playwrightLauncher } from '@web/test-runner-playwright';
|
2024-04-29 10:56:17 -04:00
|
|
|
import { readFileSync } from 'fs';
|
2024-12-14 17:00:28 -05:00
|
|
|
import { globbySync } from 'globby';
|
|
|
|
|
import * as os from 'os';
|
|
|
|
|
import * as process from 'process';
|
|
|
|
|
import { getAllComponents } from './scripts/shared.js';
|
2024-04-29 10:56:17 -04:00
|
|
|
|
|
|
|
|
// Get a list of all Web Awesome component imports for the test runner
|
|
|
|
|
const metadata = JSON.parse(readFileSync('./dist/custom-elements.json'), 'utf8');
|
2024-09-11 10:25:42 -04:00
|
|
|
const serverComponents = [];
|
|
|
|
|
const componentImports = [];
|
|
|
|
|
getAllComponents(metadata).forEach(component => {
|
2024-04-29 10:56:17 -04:00
|
|
|
const name = component.tagName.replace(/^wa-/, '');
|
2024-09-11 10:25:42 -04:00
|
|
|
|
|
|
|
|
serverComponents.push(`/dist/components/${name}/${name}.js`);
|
|
|
|
|
componentImports.push(`/dist-cdn/components/${name}/${name}.js`);
|
2024-04-29 10:56:17 -04:00
|
|
|
});
|
2021-05-27 17:52:19 -04:00
|
|
|
|
2024-09-11 10:25:42 -04:00
|
|
|
// 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);
|
|
|
|
|
|
2021-05-27 17:52:19 -04:00
|
|
|
export default {
|
2022-01-15 21:47:14 -08:00
|
|
|
rootDir: '.',
|
2023-01-04 09:58:56 -05:00
|
|
|
files: 'src/**/*.test.ts', // "default" group
|
2023-07-03 15:49:25 -04:00
|
|
|
concurrentBrowsers: 3,
|
2023-11-21 11:07:46 -05:00
|
|
|
nodeResolve: {
|
2024-12-14 17:08:29 -05:00
|
|
|
exportConditions: ['production', 'default'],
|
2023-11-21 11:07:46 -05:00
|
|
|
},
|
2023-01-18 09:29:39 -05:00
|
|
|
testFramework: {
|
|
|
|
|
config: {
|
|
|
|
|
timeout: 3000,
|
2024-09-19 11:22:57 -04:00
|
|
|
retries: 1,
|
|
|
|
|
// fails the whole test suite on first failure rather than letting the whole test suite run.
|
2024-12-14 17:08:29 -05:00
|
|
|
bail: process.env['FAIL_FAST'] === 'true',
|
|
|
|
|
},
|
2023-01-18 09:29:39 -05:00
|
|
|
},
|
2025-01-06 13:13:34 -05:00
|
|
|
middleware: [
|
|
|
|
|
// When using relative CSS imports, we need to rewrite the paths so the test runner can find them.
|
|
|
|
|
function rewriteCssUrls(context, next) {
|
|
|
|
|
if (context.url.endsWith('.css') && context.url.match(/^\/[^/]+\//)) {
|
|
|
|
|
const theme = context.url.split('/')[1];
|
|
|
|
|
context.url = `/dist/styles/themes/${theme}${context.url.slice(theme.length + 1)}`;
|
|
|
|
|
}
|
|
|
|
|
return next();
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-03-08 17:34:17 -05:00
|
|
|
plugins: [
|
|
|
|
|
esbuildPlugin({
|
|
|
|
|
ts: true,
|
2024-12-14 17:08:29 -05:00
|
|
|
target: 'es2020',
|
2024-09-11 10:25:42 -04:00
|
|
|
}),
|
2024-12-14 17:08:29 -05:00
|
|
|
litSsrPlugin(),
|
2022-03-08 17:34:17 -05:00
|
|
|
],
|
2022-01-15 21:47:14 -08:00
|
|
|
browsers: [
|
2024-09-11 10:25:42 -04:00
|
|
|
playwrightLauncher({ product: 'chromium', concurrency }),
|
|
|
|
|
playwrightLauncher({ product: 'firefox', concurrency }),
|
2024-12-14 17:08:29 -05:00
|
|
|
playwrightLauncher({ product: 'webkit', concurrency }),
|
2022-01-15 21:47:14 -08:00
|
|
|
],
|
2021-05-27 17:52:19 -04:00
|
|
|
testRunnerHtml: testFramework => `
|
2024-09-11 10:25:42 -04:00
|
|
|
<!DOCTYPE html>
|
2022-04-08 08:56:05 -04:00
|
|
|
<html lang="en-US">
|
2024-04-29 10:56:17 -04:00
|
|
|
<head>
|
2024-12-13 13:45:33 -05:00
|
|
|
<link rel="stylesheet" href="/dist/styles/themes/default.css">
|
2024-09-11 10:25:42 -04:00
|
|
|
|
|
|
|
|
<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>
|
2024-04-29 10:56:17 -04:00
|
|
|
</head>
|
2021-05-27 17:52:19 -04:00
|
|
|
<body>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
2022-01-15 21:47:14 -08:00
|
|
|
`,
|
2023-01-04 09:58:56 -05:00
|
|
|
// 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.
|
2022-01-15 21:47:14 -08:00
|
|
|
groups: globbySync('src/**/*.test.ts').map(path => {
|
|
|
|
|
const groupName = path.match(/^.*\/(?<fileName>.*)\.test\.ts/).groups.fileName;
|
|
|
|
|
return {
|
|
|
|
|
name: groupName,
|
2024-12-14 17:08:29 -05:00
|
|
|
files: path,
|
2022-01-15 21:47:14 -08:00
|
|
|
};
|
2024-12-14 17:08:29 -05:00
|
|
|
}),
|
2021-05-27 17:52:19 -04:00
|
|
|
};
|