From 60673ce68fb46ee65368b2c1d6f814148dcc3782 Mon Sep 17 00:00:00 2001 From: Oscar Franco Date: Mon, 18 Nov 2024 15:21:25 +0700 Subject: [PATCH] Restore tests --- example/src/tests/tokenizer.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/src/tests/tokenizer.spec.ts b/example/src/tests/tokenizer.spec.ts index 8dc8f40e..0a9cca56 100644 --- a/example/src/tests/tokenizer.spec.ts +++ b/example/src/tests/tokenizer.spec.ts @@ -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; @@ -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', ]);