mirror of
https://github.com/material-components/material-web.git
synced 2024-11-13 00:29:03 +03:00
2f112fa4ca
PiperOrigin-RevId: 499279039
24 lines
591 B
JavaScript
24 lines
591 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {playwrightLauncher} from '@web/test-runner-playwright';
|
|
import {jasmineTestRunnerConfig} from 'web-test-runner-jasmine';
|
|
|
|
export default {
|
|
...jasmineTestRunnerConfig(),
|
|
nodeResolve: true,
|
|
files: ['**/*test.js', '!node_modules/', '!.wireit/'],
|
|
browsers: [
|
|
playwrightLauncher({
|
|
product: 'chromium',
|
|
// TODO Firefox errors with "Touch is not defined"
|
|
// product: 'firefox',
|
|
// TODO Webkit errors with "Unknown error"
|
|
// product: 'webkit',
|
|
}),
|
|
],
|
|
};
|