Skip to content

Commit

Permalink
Restore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ospfranco committed Nov 18, 2024
1 parent e854895 commit 60673ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/src/tests/tokenizer.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {open, type DB} from '@op-engineering/op-sqlite';
import chai from 'chai';
import {afterEach, beforeEach, describe, it, itOnly} from './MochaRNAdapter';
import {afterEach, beforeEach, describe, it} from './MochaRNAdapter';

const expect = chai.expect;

Expand Down Expand Up @@ -28,7 +28,7 @@ export function tokenizerTests() {
}
});

itOnly('Should match the word split by the tokenizer', async () => {
it('Should match the word split by the tokenizer', async () => {
await db.execute('INSERT INTO tokenizer_table(content) VALUES (?)', [
'This is a test document',
]);
Expand Down

0 comments on commit 60673ce

Please sign in to comment.