-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathweb-test-runner.config.js
More file actions
36 lines (34 loc) · 955 Bytes
/
web-test-runner.config.js
File metadata and controls
36 lines (34 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import {esbuildPlugin} from '@web/dev-server-esbuild'
import {playwrightLauncher} from '@web/test-runner-playwright'
const browser = product =>
playwrightLauncher({
product,
})
export default {
files: ['test/*'],
nodeResolve: true,
plugins: [esbuildPlugin({ts: true, target: 'es2020'})],
browsers: [browser('chromium')],
testFramework: {
config: {
timeout: 500,
},
},
middleware: [
async ({request, response}, next) => {
const {method, path} = request
if (method === 'POST' || method === 'GET') {
if (path.startsWith('/fail')) {
response.status = 422
// eslint-disable-next-line i18n-text/no-en
response.body = 'This is an error'
} else if (path.startsWith('/success')) {
response.status = 200
// eslint-disable-next-line i18n-text/no-en
response.body = 'This is a warning'
}
}
await next()
},
],
}