Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/vitest-dev/vscode. VS Code extension for Vitest vitest.dev/vscode
testing vitest vscode
Something went wrong. Try again.
303 B · 14 lines
TypeScript
123456789101112131415import { library } from '@nx/library'import { mainFunction } from './main'
describe('library from app', () => { it('should work', () => { expect(library()).toEqual('library') })})
describe('main', () => { it('should work', () => { expect(mainFunction()).toEqual('hello world') })})