Skip to content

Commit

Permalink
Add test for non-ascii starting character
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic committed Dec 31, 2020
1 parent ead2770 commit bdc6b36
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/babel-types/test/converters.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ describe("converters", function () {
expect(t.toIdentifier("ɵ2")).toBe("ɵ2");
expect(t.toIdentifier("ℬ1")).toBe("ℬ1");
expect(t.toIdentifier("1bc")).toBe("bc");
expect(t.toIdentifier("\u0487a")).toBe("_\u0487a");
});

describe("valueToNode", function () {
Expand Down

0 comments on commit bdc6b36

Please sign in to comment.