Skip to content

Commit

Permalink
Update ava test case to pass with assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
xitanggg committed Dec 25, 2023
1 parent 5dcdbb5 commit 77cd93a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion __test__/index.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import test from 'ava';

import { insertText } from '../index.js';

test('Invoke insertText with empty string', () => {
test('Invoke insertText with empty string', (t) => {
insertText('');
t.pass();
});

0 comments on commit 77cd93a

Please sign in to comment.