File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 22import { GlobSync } from 'glob'
33import * as path from 'path'
44import { ExTester , ReleaseQuality } from 'vscode-extension-tester'
5+ import * as PollingUtils from '../utils/PollingUtils'
56import * as fs from 'fs' ;
67import * as os from 'os' ;
78
@@ -76,6 +77,7 @@ export class TestSuite {
7677 console . log ( err )
7778 process . exit ( 1 )
7879 }
80+ PollingUtils . pause ( 30000 ) ; //endure state is reset before running next test
7981 }
8082 }
8183}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import * as assert from 'assert'
55const DEFAULT_TIMEOUT = 30000 ;
66
77/**
8- * Pause the test for the speecified time
8+ * Pause the test for the specified time
99 */
1010export const pause = async ( ms : number ) : Promise < void > => await new Promise ( ( resolve ) => setTimeout ( resolve , ms ) )
1111
You can’t perform that action at this time.
0 commit comments