File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
2
2
import * as config from './config.mjs'
3
- import { makeCacheTest , testResults } from './test.mjs'
3
+ import { makeTest , testResults } from './test.mjs'
4
4
5
5
const testArray = [ ]
6
6
@@ -34,7 +34,7 @@ function runSome (tests, chunkSize) {
34
34
let index = 0
35
35
function next ( ) {
36
36
if ( index < tests . length ) {
37
- const these = tests . slice ( index , index + chunkSize ) . map ( makeCacheTest )
37
+ const these = tests . slice ( index , index + chunkSize ) . map ( makeTest )
38
38
index += chunkSize
39
39
Promise . all ( these ) . then ( next )
40
40
} else {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const setupCheck = clientUtils.setupCheck
11
11
export const testUUIDs = { }
12
12
export const testResults = { }
13
13
14
- export function makeCacheTest ( test ) {
14
+ export function makeTest ( test ) {
15
15
return new Promise ( ( resolve , reject ) => {
16
16
const uuid = utils . token ( )
17
17
testUUIDs [ test . id ] = uuid
You can’t perform that action at this time.
0 commit comments