utils/tests/search.spec.ts
ztimson 26cc18ffb3
Some checks failed
Build / Build NPM Project (push) Failing after 44s
Build / Publish Documentation (push) Has been skipped
Build / Tag Version (push) Has been skipped
Fixed path event, renamed testCondition to logicTest & fixed some tests
2025-05-11 11:46:03 -04:00

10 lines
167 B
TypeScript

import {logicTest} from '../src';
describe('Search Utilities', () => {
describe('testCondition', () => {
test('=', () => {
expect(logicTest(''))
});
});
});