Closed hildjj closed 5 months ago
This should be a valid test:
import test from 'node:test' test('foo', () => {})
however, to get this to be recognized by the plugin in my project, I had to do this:
import {test} from 'node:test' test('foo', () => {})
I figured this out looking at #11 and #23.
Duplicates https://github.com/connor4312/nodejs-testing/issues/42
This should be a valid test:
however, to get this to be recognized by the plugin in my project, I had to do this:
I figured this out looking at #11 and #23.