Skip to content
Snippets Groups Projects
Commit 7c91fc23 authored by Millicent Billette's avatar Millicent Billette
Browse files

100% coverage on dictionary-builder

parent e79ac7da
No related branches found
No related tags found
No related merge requests found
...@@ -63,3 +63,6 @@ test('regLikeVariants handle plop:\\:', t => { ...@@ -63,3 +63,6 @@ test('regLikeVariants handle plop:\\:', t => {
test('regLikeVariants handle [\\]*]', t => { test('regLikeVariants handle [\\]*]', t => {
t.deepEqual(app.regLikeVariants('[\\]*]'), [']', '*']); t.deepEqual(app.regLikeVariants('[\\]*]'), [']', '*']);
}); });
test('regLikeVariants handle escaping common chr \\a', t => {
t.deepEqual(app.regLikeVariants('\\a'), ['a']);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment