tenseleyflow/dlm-vsc / 6a43cb2

Browse files

Test runner: open VSCode against the real fixtures dir, not a phantom path

out-test/fixtures doesn't exist; the actual sample fixtures live under test/fixtures. Tests passed before because they resolve fixtures themselves via __dirname, not through the workspace folder. Cosmetic correctness fix.
Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
6a43cb2696e0202af557ef303e05e7bfa15e81bc
Parents
a91745a
Tree
76449a1

1 changed file

StatusFile+-
M test/runTest.ts 1 1
test/runTest.tsmodified
@@ -5,7 +5,7 @@ async function main() {
55
   try {
66
     const extensionDevelopmentPath = path.resolve(__dirname, "../../");
77
     const extensionTestsPath = path.resolve(__dirname, "./suite/index");
8
-    const testWorkspace = path.resolve(__dirname, "./fixtures");
8
+    const testWorkspace = path.resolve(__dirname, "../test/fixtures");
99
 
1010
     await runTests({
1111
       extensionDevelopmentPath,