rename syntax tests to transformation
This commit is contained in:
2
test/fixtures/transformation/unicode-regex/basic/actual.js
vendored
Normal file
2
test/fixtures/transformation/unicode-regex/basic/actual.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
var string = 'foo💩bar';
|
||||
var match = string.match(/foo(.)bar/u);
|
||||
6
test/fixtures/transformation/unicode-regex/basic/expected.js
vendored
Normal file
6
test/fixtures/transformation/unicode-regex/basic/expected.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
var string = "foo💩bar";
|
||||
|
||||
var match = string.match(
|
||||
/foo((?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uDC00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF]))bar/
|
||||
);
|
||||
Reference in New Issue
Block a user