Skip to content

Commit e05d399

Browse files
committed
test: update spec runner
1 parent 061cbea commit e05d399

1 file changed

Lines changed: 17 additions & 14 deletions

File tree

spec/runner.js

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
"use babel";
1+
/** @babel */
22
import { createRunner } from "atom-jasmine3-test-runner";
33
import pkg from "../package.json";
44

55
// https://github.com/UziTech/atom-jasmine3-test-runner#api
66
export default createRunner({
77
testPackages: Array.from(pkg["package-deps"]),
88
timeReporter: true,
9-
specHelper: true,
10-
attachToDOM: true,
11-
// Extra Packages
12-
customMatchers: true,
13-
jasmineFocused: false,
14-
jasmineJson: false,
15-
jasminePass: false,
16-
jasmineShouldFail: false,
17-
jasmineTagged: false,
18-
mockClock: true,
19-
mockLocalStorage: false,
20-
profile: true,
21-
unspy: false,
9+
specHelper: {
10+
atom: true,
11+
ci: true,
12+
attachToDom: true,
13+
// Extra Packages
14+
customMatchers: true,
15+
jasmineFocused: false,
16+
jasmineJson: false,
17+
jasminePass: false,
18+
jasmineShouldFail: false,
19+
jasmineTagged: false,
20+
mockClock: true,
21+
mockLocalStorage: false,
22+
profile: true,
23+
unspy: false,
24+
},
2225
});

0 commit comments

Comments
 (0)