Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump chai and @types/chai #84

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 43 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"type": "module",
"name": "helloworld-extester",
"displayName": "HelloWorld ExTester",
"description": "HelloWorld example extension for ExTester",
Expand Down Expand Up @@ -45,12 +46,12 @@
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.13.0",
"@types/chai": "^4.3.16",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.6",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"chai": "^4.4.1",
"chai": "^5.1.2",
"eslint": "^9.18.0",
"eslint-define-config": "^2.1.0",
"mocha": "^11.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/ui-test/extensionsView.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import { expect } from 'chai';
import { ActivityBar, ExtensionsViewItem, ExtensionsViewSection } from 'vscode-extension-tester';
import pjson from '../../package.json';
import pjson from '../../package.json' with { type: 'json' };

// sample test code on how to look for an extension
describe('Example extension view tests', () => {
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"compilerOptions": {
"module": "Node16",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"outDir": "out",
"sourceMap": true,
"strict": true,
"rootDir": "src",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"exclude": ["node_modules", ".vscode-test", "test-resources", "src/ui-test/resources/**", ".test-extensions"],
Expand Down
Loading