alpha
Login
Join now
vitest.dev
/
vscode
Star
Starred
Star
Something went wrong. Try again.
Fork
0
Eye filled
Watch
Watching
Watch
[READ-ONLY] Mirror of https://github.com/vitest-dev/vscode. VS Code extension for Vitest
vitest.dev/vscode
testing
vitest
vscode
+3 more
testing
vitest
vscode
Star
Starred
Star
Something went wrong. Try again.
Fork
0
Eye filled
Watch
Watching
Watch
Overview
Overview
Issues
Issues
Pulls
Pulls
Pipelines
Pipelines
vscode
/
samples
/
basic
/
test
/
bug.test.ts
86 B
·
4 lines
TypeScript
at commit
cd6fe489
Blame
Vladimir Sheremet
·
chore: remove vitest/runner patch
·
1y ago
3bd19e9d
1
2
3
4
import
{ expect
,
test }
from
'vitest'
;
test
(
'fail'
,
()
=>
{
expect
(
1
)
.toEqual
(
2
);
})