Skip to content

Commit bb53fb0

Browse files
committed
Remove karma from scripts
1 parent 057f32c commit bb53fb0

File tree

1 file changed

+5
-20
lines changed

1 file changed

+5
-20
lines changed

package-scripts.js

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,11 @@ module.exports = {
55
scripts: {
66
default: 'nps webpack',
77
test: {
8-
default: 'nps test.jest',
9-
jest: {
10-
default: series(
11-
rimraf('test/coverage-jest'),
12-
'jest'
13-
),
14-
watch: 'jest --watch',
15-
},
16-
karma: {
17-
default: series(
18-
rimraf('test/coverage-karma'),
19-
'karma start test/karma.conf.js'
20-
),
21-
watch: 'karma start test/karma.conf.js --auto-watch --no-single-run',
22-
debug: 'karma start test/karma.conf.js --auto-watch --no-single-run --debug'
23-
},
24-
all: concurrent({
25-
browser: series.nps('test.karma', 'e2e'),
26-
jest: 'nps test.jest',
27-
})
8+
default: series(
9+
rimraf('test/coverage-jest'),
10+
'jest'
11+
),
12+
watch: 'jest --watch'
2813
},
2914
e2e: {
3015
default: concurrent({

0 commit comments

Comments
 (0)