Skip to content

Commit 658f174

Browse files
committed
refactor: colocate test files
1 parent 43007de commit 658f174

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/__tests__/quantifiers.test.tsx renamed to src/quantifiers/__tests__/base.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { one, oneOrMore, optionally, zeroOrMore } from '../quantifiers/base';
2-
import { buildPattern, buildRegex } from '../compiler';
1+
import { one, oneOrMore, optionally, zeroOrMore } from '../base';
2+
import { buildPattern, buildRegex } from '../../compiler';
33

44
test('"oneOrMore" quantifier', () => {
55
expect(buildPattern(oneOrMore('a'))).toEqual('a+');

0 commit comments

Comments
 (0)