From 8807c796ae3ddad42504b0c34320607a9e033c99 Mon Sep 17 00:00:00 2001 From: shmck Date: Sun, 29 Mar 2020 10:40:52 -0700 Subject: [PATCH] remove file formats file filter --- src/actions/tutorialConfig.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/actions/tutorialConfig.ts b/src/actions/tutorialConfig.ts index 115455fc..458b3676 100644 --- a/src/actions/tutorialConfig.ts +++ b/src/actions/tutorialConfig.ts @@ -37,21 +37,12 @@ const tutorialConfig = async ( vscode.commands.executeCommand(COMMANDS.CONFIG_TEST_RUNNER, config.testRunner) - const fileFormats = config.testRunner.fileFormats - // verify if file test should run based on document saved const shouldRunTest = (document: vscode.TextDocument): boolean => { // must be a file if (document.uri.scheme !== 'file') { return false } - // must configure with file formatss - if (fileFormats && fileFormats.length) { - const fileFormat: G.FileFormat = languageMap[document.languageId] - if (!fileFormats.includes(fileFormat)) { - return false - } - } return true }