From 89f4e29ff4d7b23c4a9d440d4eac36ad24364349 Mon Sep 17 00:00:00 2001 From: Brett Cannon <54418+brettcannon@users.noreply.github.com> Date: Fri, 27 Dec 2019 13:41:12 -0800 Subject: [PATCH] Fix path to 'extension.ts' The default location for `extension.ts` is two levels up, not one. --- helloworld-test-sample/src/test/suite/extension.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloworld-test-sample/src/test/suite/extension.test.ts b/helloworld-test-sample/src/test/suite/extension.test.ts index e3d51719..2a75fe1e 100644 --- a/helloworld-test-sample/src/test/suite/extension.test.ts +++ b/helloworld-test-sample/src/test/suite/extension.test.ts @@ -3,7 +3,7 @@ import * as assert from 'assert'; // You can import and use all API from the 'vscode' module // as well as import your extension to test it import * as vscode from 'vscode'; -// import * as myExtension from '../extension'; +// import * as myExtension from '../../extension'; suite('Extension Test Suite', () => { vscode.window.showInformationMessage('Start all tests.');