Skip to content

Commit 64fc3f5

Browse files
authored
chore(vscode): cleaning up setup and tests (#4610)
1 parent d12a309 commit 64fc3f5

4 files changed

Lines changed: 3 additions & 5 deletions

File tree

vscode/extension/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@
107107
},
108108
"scripts": {
109109
"ci": "pnpm run lint && pnpm run compile",
110-
"compile-tests": "tsc -p . --outDir out",
111-
"watch-tests": "tsc -p . -w --outDir out",
112110
"lint": "eslint src",
113111
"lint:fix": "eslint src --fix",
114112
"test:e2e": "playwright test",

vscode/extension/tests/diagnostics.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test, expect } from '@playwright/test';
1+
import { test } from '@playwright/test';
22
import path from 'path';
33
import fs from 'fs-extra';
44
import os from 'os';

vscode/extension/tests/lineage.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test, _electron as electron, expect, ElectronApplication, Page } from '@playwright/test';
1+
import { test, expect, Page } from '@playwright/test';
22
import path from 'path';
33
import fs from 'fs-extra';
44
import os from 'os';

vscode/extension/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"@bus/*": ["../bus/src/*"]
1616
}
1717
},
18-
"include": ["src/**/*", "../bus/src/**/*"],
18+
"include": ["tests/**/*", "src/**/*", "../bus/src/**/*"],
1919
"exclude": ["node_modules", "../node_modules", "../../node_modules"]
2020
}

0 commit comments

Comments
 (0)