From 4e94695c758215a950fe53911e1c1e30e47b9c98 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sat, 4 Nov 2017 23:55:09 +0900 Subject: add key utils --- test/shared/util/re.test.js | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 test/shared/util/re.test.js (limited to 'test/shared/util/re.test.js') diff --git a/test/shared/util/re.test.js b/test/shared/util/re.test.js deleted file mode 100644 index 9ed6521..0000000 --- a/test/shared/util/re.test.js +++ /dev/null @@ -1,20 +0,0 @@ -import { expect } from 'chai'; -import * as re from 'shared/utils/re'; - -describe("re util", () => { - it('matches by pattern', () => { - let regex = re.fromWildcard('*.example.com/*'); - expect('foo.example.com/bar').to.match(regex); - expect('foo.example.com').not.to.match(regex); - expect('example.com/bar').not.to.match(regex); - - regex = re.fromWildcard('example.com/*') - expect('example.com/foo').to.match(regex); - expect('example.com/').to.match(regex); - - regex = re.fromWildcard('example.com/*bar') - expect('example.com/foobar').to.match(regex); - expect('example.com/bar').to.match(regex); - expect('example.com/foobarfoo').not.to.match(regex); - }) -}); -- cgit v1.2.3