@@ -20,7 +20,7 @@ import {
20
20
const mochaJs = path . resolve ( findUpRoot ( ) , "node_modules" , "mocha" , "bin" , "_mocha" ) ;
21
21
export const localBaseline = "tests/baselines/local/" ;
22
22
export const refBaseline = "tests/baselines/reference/" ;
23
- export const coverageDir = "coverage" ;
23
+ const coverageDir = "coverage" ;
24
24
25
25
/**
26
26
* @param {string } runJs
@@ -174,7 +174,7 @@ export async function runConsoleTests(runJs, defaultReporter, runInParallel, opt
174
174
}
175
175
}
176
176
177
- export async function cleanTestDirs ( ) {
177
+ async function cleanTestDirs ( ) {
178
178
await rimraf ( localBaseline ) ;
179
179
await fs . promises . mkdir ( localBaseline , { recursive : true } ) ;
180
180
}
@@ -192,7 +192,7 @@ export async function cleanTestDirs() {
192
192
* @param {number | undefined } [shards]
193
193
* @param {number | undefined } [shardId]
194
194
*/
195
- export function writeTestConfigFile ( tests , runners , light , taskConfigsFolder , workerCount , stackTraceLimit , timeout , keepFailed , shards , shardId ) {
195
+ function writeTestConfigFile ( tests , runners , light , taskConfigsFolder , workerCount , stackTraceLimit , timeout , keepFailed , shards , shardId ) {
196
196
const testConfigContents = JSON . stringify ( {
197
197
test : tests ? [ tests ] : undefined ,
198
198
runners : runners ? runners . split ( "," ) : undefined ,
0 commit comments