File tree 5 files changed +318
-259
lines changed
5 files changed +318
-259
lines changed Original file line number Diff line number Diff line change 32
32
" webworkers"
33
33
],
34
34
"devDependencies" : {
35
- "@babel/core" : " ^ 7.9.0 " ,
35
+ "@babel/core" : " 7.9.6 " ,
36
36
"@babel/plugin-proposal-class-properties" : " ^7.8.3" ,
37
37
"babel-eslint" : " ^10.1.0" ,
38
- "eslint" : " ^6.8.0" ,
39
- "eslint-config-bliss" : " ^4.7.0" ,
38
+ "eslint" : " 7.0.0" ,
39
+ "eslint-config-bliss" : " 5.0.0" ,
40
+ "is-ci" : " ^2.0.0" ,
40
41
"jasmine-node" : " ^3.0.0" ,
41
42
"q" : " ^1.5.1"
42
43
},
67
68
},
68
69
"babel" : {
69
70
"presets" : [
70
- [" @babel/preset-env" , {
71
- "targets" : {
72
- "chrome" : " 58" ,
73
- "node" : " 10"
71
+ [
72
+ " @babel/preset-env" ,
73
+ {
74
+ "targets" : {
75
+ "chrome" : " 58" ,
76
+ "node" : " 10"
77
+ }
74
78
}
75
- } ]
79
+ ]
76
80
]
77
81
},
78
82
"eslintConfig" : {
Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ describe('API', () => {
242
242
} ) ;
243
243
244
244
p . map ( addOne )
245
- . then ( data => data . reduce ( sum ) )
245
+ . then ( data => data . reduce ( ( a , b ) => a + b , 0 ) )
246
246
. then ( data => {
247
247
expect ( data ) . toEqual ( 9 ) ;
248
248
done ( ) ;
Original file line number Diff line number Diff line change
1
+ const os = require ( 'os' )
2
+ const isCI = require ( 'is-ci' )
3
+ const isSingleCore = 1 === os . cpus ( ) . length ;
4
+
5
+ let extraInfo = 'This test is flaky so please rerun. Will be skipped on single core machines and for CI'
6
+
7
+ if ( isSingleCore ) {
8
+ extraInfo += 'This test has been skipped as its running on a single core machine' ;
9
+ }
10
+
11
+ if ( isCI ) {
12
+ console . log ( 'This test has been skipped as its running in a CI enviroment' )
13
+ }
14
+
1
15
describe ( 'Performance' , ( ) => {
2
16
const isNode = typeof module !== 'undefined' && module . exports ;
3
17
const Parallel = isNode ? require ( '../../lib/parallel.js' ) : self . Parallel ;
4
18
5
- it ( '.map() should be using multi-threading (could fail on single-core)' , ( ) => {
19
+ it ( `.map() should be using multi-threading (${ extraInfo } )` , ( ) => {
20
+ if ( isCI || isSingleCore ) {
21
+ return ;
22
+ }
23
+
6
24
const slowSquare = function ( n ) {
7
25
let i = 0 ;
8
26
while ( ++ i < n * n ) { }
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ describe('Q-API', () => {
66
66
const p = new Parallel ( [ 1 , 2 , 3 ] ) ;
67
67
68
68
Q . when ( p . map ( addOne ) )
69
- . then ( ( ) => p . spawn ( data => data . reduce ( sum ) ) )
69
+ . then ( ( ) => p . spawn ( data => data . reduce ( ( a , b ) => a + b , 0 ) ) )
70
70
. then ( data => {
71
71
expect ( result ) . toEqual ( 9 ) ;
72
72
} ) ;
@@ -90,7 +90,7 @@ describe('Q-API', () => {
90
90
const p = new Parallel ( [ 1 , 2 , 3 ] ) ;
91
91
92
92
Q . when ( p . map ( addOne ) )
93
- . then ( qe => p . then ( data => data . reduce ( sum ) ) )
93
+ . then ( qe => p . then ( data => data . reduce ( ( a , b ) => a + b , 0 ) ) )
94
94
. then ( data => {
95
95
expect ( data ) . toEqual ( 9 ) ;
96
96
done ( ) ;
You can’t perform that action at this time.
0 commit comments