Skip to content

Commit ff3dd56

Browse files
committed
feat: add links and completions features
1 parent 499b10d commit ff3dd56

21 files changed

+6133
-359
lines changed

.vscode/launch.json

+12-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
1-
// A launch configuration that launches the extension inside a new window
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
51
{
6-
"version": "0.2.0",
7-
"configurations": [
8-
{
9-
"name": "Extension",
10-
"type": "extensionHost",
11-
"request": "launch",
12-
"runtimeExecutable": "${execPath}",
13-
"args": ["--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}"],
14-
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
15-
"preLaunchTask": "npm: dev"
16-
},
17-
]
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"args": ["--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}"],
10+
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
11+
"preLaunchTask": "npm: dev"
12+
}
13+
]
1814
}

bin/test.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,8 @@ import { fileSystem } from '@japa/file-system'
2020
configure({
2121
...processCliArgs(process.argv.slice(2)),
2222
...{
23-
files: ['./test/suites/pure/**/*.spec.ts'],
24-
plugins: [
25-
assert(),
26-
snapshot(),
27-
fileSystem(),
28-
],
23+
files: ['./tests/**/*.spec.ts'],
24+
plugins: [assert(), snapshot(), fileSystem()],
2925
reporters: [specReporter()],
3026
importer: (filePath) => import(filePath),
3127
},

0 commit comments

Comments
 (0)