jest-environment-lvce-editor
v0.38.8
Published
Lvce Editor Environment for Jest
Downloads
1,730
Readme
jest-environment-lvce-editor
Run your tests using Jest & lvce editor api
Usage
/**
* @jest-environment lvce-editor
*/
const testCommand = {
id: 'test-command',
execute: 42,
}
test('registerCompletionProvider', async () => {
vscode.registerCommand(testCommand)
expect(await vscode.executeCommand('test-command')).toBe(42)
})