File tree 3 files changed +16
-7
lines changed
3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 39
39
"base16-tomorrow-light-theme" : " file:packages/base16-tomorrow-light-theme" ,
40
40
"bookmarks" : " https://www.atom.io/api/packages/bookmarks/versions/0.46.0/tarball" ,
41
41
"bracket-matcher" : " https://www.atom.io/api/packages/bracket-matcher/versions/0.91.2/tarball" ,
42
- "chai" : " 4.2.0" ,
43
42
"chart.js" : " 2.9.4" ,
44
43
"clear-cut" : " ^2.0.2" ,
45
44
"coffee-script" : " 1.12.7" ,
74
73
"grim" : " 2.0.3" ,
75
74
"image-view" : " https://www.atom.io/api/packages/image-view/versions/0.64.0/tarball" ,
76
75
"incompatible-packages" : " file:packages/incompatible-packages" ,
77
- "jasmine-json" : " ~0.0" ,
78
- "jasmine-reporters" : " 1.1.0" ,
79
- "jasmine-tagged" : " ^1.1.4" ,
80
76
"key-path-helpers" : " ^0.4.0" ,
81
77
"keybinding-resolver" : " https://www.atom.io/api/packages/keybinding-resolver/versions/0.39.0/tarball" ,
82
78
"language-c" : " https://www.atom.io/api/packages/language-c/versions/0.60.19/tarball" ,
121
117
"marked" : " 1.2.0" ,
122
118
"metrics" : " https://www.atom.io/api/packages/metrics/versions/1.8.1/tarball" ,
123
119
"minimatch" : " ^3.0.3" ,
124
- "mocha" : " 6.2.3" ,
125
- "mocha-junit-reporter" : " 2.0.0" ,
126
- "mocha-multi-reporters" : " ^1.1.4" ,
127
120
"mock-spawn" : " ^0.2.6" ,
128
121
"normalize-package-data" : " 3.0.0" ,
129
122
"notifications" : " https://www.atom.io/api/packages/notifications/versions/0.71.0/tarball" ,
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ async function bootstrap() {
47
47
const runApmInstall = require ( './lib/run-apm-install' )
48
48
runApmInstall ( CONFIG . repositoryRootPath , ci )
49
49
50
+ // test dependencies
51
+ runApmInstall ( path . join ( CONFIG . repositoryRootPath , 'spec' ) , ci ) ;
52
+
50
53
await installScriptDependenciesPromise ;
51
54
await Thread . terminate ( installScriptDependencies )
52
55
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " atom-tests" ,
3
+ "description" : " Atom tests" ,
4
+ "dependencies" : {
5
+ "chai" : " 4.2.0" ,
6
+ "jasmine-json" : " ~0.0" ,
7
+ "jasmine-reporters" : " 1.1.0" ,
8
+ "jasmine-tagged" : " ^1.1.4" ,
9
+ "mocha" : " 6.2.3" ,
10
+ "mocha-junit-reporter" : " 2.0.0" ,
11
+ "mocha-multi-reporters" : " ^1.1.4"
12
+ }
13
+ }
You can’t perform that action at this time.
0 commit comments