ui: fix tests

This commit is contained in:
Matthew Penner 2023-01-12 12:44:49 -07:00
parent 155d7bb876
commit 7e1aa8d7e2
No known key found for this signature in database
4 changed files with 23 additions and 3 deletions

View file

@ -1,3 +1,5 @@
import { describe, expect, it } from 'vitest';
import extractSearchFilters from '@/helpers/extractSearchFilters';
type TestCase = [string, 0 | Record<string, string[]>];

View file

@ -1,3 +1,5 @@
import { describe, expect, it } from 'vitest';
import splitStringWhitespace from '@/helpers/splitStringWhitespace';
describe('@/helpers/splitStringWhitespace.ts', function () {