diff --git a/src/__test__/index.test.ts b/src/__test__/index.test.ts index f5ce346..9cc7adb 100644 --- a/src/__test__/index.test.ts +++ b/src/__test__/index.test.ts @@ -3,8 +3,8 @@ import { describe, it } from 'node:test'; import { helloWorld } from '../index.js'; -describe('helloWorld', () => { - it('should respond with hello world', () => { +void describe('helloWorld', () => { + void it('should respond with hello world', () => { assert.equal(helloWorld('test'), 'hello world! test'); }); });