1
- import { endOfString , startOfString } from '../anchors' ;
2
- import { oneOrMore } from '../quantifiers' ;
1
+ import { buildRegExp } from '../../builders' ;
2
+ import { endOfString , startOfString , wordBoundary } from '../anchors' ;
3
+ import { any , notWhitespace } from '../character-class' ;
4
+ import { oneOrMore , zeroOrMore } from '../quantifiers' ;
3
5
4
6
test ( '`startOfString` basic cases' , ( ) => {
5
7
expect ( startOfString ) . toEqualRegex ( / ^ / ) ;
@@ -18,3 +20,18 @@ test('`endOfString` basic cases', () => {
18
20
test ( '`endOfString` regex tests' , ( ) => {
19
21
expect ( [ oneOrMore ( 'a' ) , endOfString ] ) . toMatchGroups ( 'a aa aaa' , [ 'aaa' ] ) ;
20
22
} ) ;
23
+
24
+ test ( '`wordBoundary` basic cases' , ( ) => {
25
+ expect ( wordBoundary ) . toEqualRegex ( / \b / ) ;
26
+ expect ( [ wordBoundary , 'a' , 'b' ] ) . toEqualRegex ( / \b a b / ) ;
27
+ } ) ;
28
+
29
+ test ( '`wordBoundary` regex tests' , ( ) => {
30
+ expect (
31
+ buildRegExp ( [ wordBoundary , 'a' , zeroOrMore ( notWhitespace ) ] , { global : true } ) ,
32
+ ) . toMatchGroups ( 'a ba ab aa' , [ 'a' , 'ab' , 'aa' ] ) ;
33
+
34
+ expect (
35
+ buildRegExp ( [ zeroOrMore ( notWhitespace ) , 'a' , wordBoundary ] , { global : true } ) ,
36
+ ) . toMatchGroups ( 'a ba ab aa' , [ 'a' , 'ba' , 'aa' ] ) ;
37
+ } ) ;
0 commit comments