diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-07-06 18:23:02 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-07-06 18:23:02 +0200 |
commit | cd01df3747ff361fab819fd1d30fac1dba6240e1 (patch) | |
tree | 2333eee43667c5cae6d8cebf6cc67bb5fb5a718e /test/deinflection | |
parent | cb78013884e3aa3b1e1a91722f5eeb78c62f6796 (diff) |
update tests and examples
Diffstat (limited to 'test/deinflection')
-rw-r--r-- | test/deinflection/test.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/deinflection/test.ts b/test/deinflection/test.ts index 3dc702b..5a123ba 100644 --- a/test/deinflection/test.ts +++ b/test/deinflection/test.ts @@ -1,8 +1,6 @@ import DirectCoreClient from '../../core/direct/client.ts'; import cases from "./cases.ts"; - -var core = new DirectCoreClient(); -await core.ready; +import { core } from '../base.ts'; cases.forEach(({ input, tags }) => { Deno.test(`deinflection - ${input}`, async () => { |