Skip to content

Commit 164b4e1

Browse files
committed
switch to vitest
1 parent db8ef03 commit 164b4e1

File tree

71 files changed

+3859
-5590
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+3859
-5590
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM mcr.microsoft.com/devcontainers/javascript-node:22
22

33
RUN apt-get update
4-
RUN apt-get install -y openjdk-17-jdk
4+
RUN apt-get install -y openjdk-17-jdk gdb

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"streetsidesoftware.code-spell-checker",
1010
"bierner.markdown-emoji",
1111
"smulyono.reveal",
12-
"ms-azuretools.vscode-docker"
12+
"ms-azuretools.vscode-docker",
13+
"ms-vscode.cpptools-extension-pack"
1314
]
1415
}
1516
}

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
nodeVersion: [ 16, 18, 20, 22 ]
12+
nodeVersion: [ 18, 20, 22 ]
1313
jdkVersion: [ openjdk9, openjdk10, openjdk11, openjdk21 ]
1414
steps:
1515
- name: Checkout source code

.github/workflows/pull-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
nodeVersion: [ 16, 18, 20, 22 ]
13+
nodeVersion: [ 18, 20, 22 ]
1414
jdkVersion: [ openjdk9, openjdk10, openjdk11, openjdk21 ]
1515
steps:
1616
- name: Checkout source code

.vscode/settings.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
{
22
"cSpell.words": [
3-
"Ferner"
3+
"clazz",
4+
"clazzclazz",
5+
"Ferner",
6+
"jarray",
7+
"jboolean",
8+
"jbyte",
9+
"jchar",
10+
"jclass",
11+
"jdouble",
12+
"jfloat",
13+
"jint",
14+
"jlong",
15+
"jmethod",
16+
"jobj",
17+
"jobject",
18+
"jshort",
19+
"jsize",
20+
"jthrowable",
21+
"jvalue",
22+
"Ljava",
23+
"varargs"
424
]
525
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ Either `postInstall.js` didn't run or there was a problem detecting java. Try ru
904904

905905
npm install
906906
node-gyp build --debug
907-
gdb --args `which node` ./node_modules/.bin/nodeunit test
907+
gdb --args "$(which node)" ./node_modules/.bin/vitest test
908908

909909
## License
910910

0 commit comments

Comments
 (0)