Skip to content

Commit 0baa5ab

Browse files
committed
rename test file
1 parent b78119a commit 0baa5ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/lsptoolshost/integrationTests/restore.integration.test.ts renamed to test/lsptoolshost/integrationTests/fileBasedPrograms.integration.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import {
1919
import { describe, beforeAll, beforeEach, afterAll, test, expect, afterEach } from '@jest/globals';
2020
import { CSharpExtensionExports } from '../../../src/csharpExtensionExports';
2121

22-
const doRunSuite = process.env.RoslynSkipTestFileBasedPrograms !== 'true';
23-
console.log(`process.env.RoslynSkipTestFileBasedPrograms: ${process.env.RoslynSkipTestFileBasedPrograms}`);
22+
const doRunSuite = process.env['ROSLYN_SKIP_TEST_FILE_BASED_PROGRAMS'] !== 'true';
23+
console.log(`process.env.ROSLYN_SKIP_TEST_FILE_BASED_PROGRAMS: ${process.env.ROSLYN_SKIP_TEST_FILE_BASED_PROGRAMS}`);
2424
console.log(`doRunSuite: ${doRunSuite}`);
25-
(doRunSuite ? describe : describe.skip)(`Restore Tests`, () => {
25+
(doRunSuite ? describe : describe.skip)(`File-based Programs Tests`, () => {
2626
let exports: CSharpExtensionExports;
2727

2828
beforeAll(async () => {

0 commit comments

Comments
 (0)