tangled
alpha
login
or
join now
tombl.dev
/
dhtml
1
fork
atom
a post-component library for building user-interfaces on the web.
1
fork
atom
overview
issues
pulls
pipelines
test: use playwright exclusively
tombl.dev
1 year ago
929df950
51ecc1a0
verified
This commit was signed with the committer's
known signature
.
tombl.dev
SSH Key Fingerprint:
SHA256:d8AHgL5V+3WdvGdDb3SVBfb0RIRJfkKcqhQ5aG1mVNk=
+5
-11
1 changed file
expand all
collapse all
unified
split
vitest.config.js
+5
-11
vitest.config.js
reviewed
···
17
17
reportOnFailure: true,
18
18
include: ['src/html.js'],
19
19
},
20
20
-
browser: ci
21
21
-
? {
22
22
-
enabled: true,
23
23
-
provider: 'playwright',
24
24
-
instances: [{ browser: 'chromium' }],
25
25
-
}
26
26
-
: {
27
27
-
enabled: true,
28
28
-
provider: 'preview',
29
29
-
instances: [{ browser: 'preview' }],
30
30
-
},
20
20
+
browser: {
21
21
+
enabled: true,
22
22
+
provider: 'playwright',
23
23
+
instances: [{ browser: 'chromium' }],
24
24
+
},
31
25
},
32
26
})