mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
layers - clean up top level workbench test folder
This commit is contained in:
@@ -109,9 +109,9 @@ function createCoverageReport(opts) {
|
||||
return Promise.resolve(undefined);
|
||||
}
|
||||
|
||||
function loadWorkbenchTestingModule() {
|
||||
function loadWorkbenchTestingUtilsModule() {
|
||||
return new Promise((resolve, reject) => {
|
||||
loader.require(['vs/workbench/test/electron-browser/testing'], resolve, reject);
|
||||
loader.require(['vs/workbench/test/common/utils'], resolve, reject);
|
||||
})
|
||||
}
|
||||
|
||||
@@ -172,7 +172,7 @@ function loadTests(opts) {
|
||||
});
|
||||
});
|
||||
|
||||
return loadWorkbenchTestingModule().then((workbenchTestingModule) => {
|
||||
return loadWorkbenchTestingUtilsModule().then((workbenchTestingModule) => {
|
||||
const assertCleanState = workbenchTestingModule.assertCleanState;
|
||||
|
||||
suite('Tests are using suiteSetup and setup correctly', () => {
|
||||
|
||||
Reference in New Issue
Block a user