diff --git a/client/src/test/suite/extension.test.ts b/client/src/test/suite/extension.test.ts index 3825037..7104324 100644 --- a/client/src/test/suite/extension.test.ts +++ b/client/src/test/suite/extension.test.ts @@ -338,7 +338,7 @@ class testDocuments extends Map { super(); this.directory = temp.mkdirSync({prefix: 'vscode-groovy-lint-test-'}); - debug(`testDocuments ${files} directory: ${this.directory}`); + debug(`testDocuments ${files} directory: "${this.directory}"`); // Copy the test config, so it will be found. const data = fs.readFileSync(join(__dirname, testsFolder, testConfig)); @@ -359,7 +359,7 @@ class testDocuments extends Map { const doc = this.get(uri.fsPath); if (!doc) { // Not one of our documents. - debug(`Ignoring diagnostics changes "${uri.fsPath}"`); + debug(`Ignoring diagnostics changes "${uri.fsPath}" directory: "${this.directory}"`); return; } @@ -376,7 +376,7 @@ class testDocuments extends Map { const doc = this.get(e.document.uri.fsPath); if (!doc) { // Not one of our documents. - debug(`Ignoring document changes "${e.document.uri.fsPath}"`); + debug(`Ignoring document changes "${e.document.uri.fsPath}" directory: "${this.directory}"`); return; } @@ -483,7 +483,6 @@ suite('VsCode GroovyLint Test Suite', async () => { // Fix documents. documentDetails.forEach(async (_, name) => { - test(`Fix "${name}"`, async function() { const testDocs = new testDocuments(name); // Total process requires three passes so triple the timeout.