Fixed path event, renamed testCondition to logicTest & fixed some tests
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

This commit is contained in:
2025-05-11 11:46:03 -04:00
parent 3fd5c5ed57
commit 26cc18ffb3
8 changed files with 76 additions and 146 deletions

9
tests/search.spec.ts Normal file
View File

@ -0,0 +1,9 @@
import {logicTest} from '../src';
describe('Search Utilities', () => {
describe('testCondition', () => {
test('=', () => {
expect(logicTest(''))
});
});
});