diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-22 15:13:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-22 15:13:55 +0900 |
commit | 750be0263207b1275ae3911b5585343b49de2645 (patch) | |
tree | b635290335c2db71a6723eb7759c84bcf33a34ff /test/shared | |
parent | 896c2cf60d009c9b12d99a394287cfb1d5ee1e3a (diff) | |
parent | 1c8cef7cf673deb2c3d0c5e0b3617bf2f16d7c74 (diff) |
Merge pull request #691 from ueokande/enable-addon-on-blacklisted-sites
Enable addon on blacklisted sites
Diffstat (limited to 'test/shared')
-rw-r--r-- | test/shared/settings/Blacklist.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/shared/settings/Blacklist.test.ts b/test/shared/settings/Blacklist.test.ts index dfd036e..bcddf18 100644 --- a/test/shared/settings/Blacklist.test.ts +++ b/test/shared/settings/Blacklist.test.ts @@ -132,7 +132,7 @@ describe('Blacklist', () => { { url: 'github.com', keys: ['j', 'k'] }, ]); - expect(blacklist.includeKey(new URL('https://google.com'), Key.fromMapKey('j'))).to.be.true; + expect(blacklist.includeKey(new URL('https://google.com'), Key.fromMapKey('j'))).to.be.false; expect(blacklist.includeKey(new URL('https://github.com'), Key.fromMapKey('j'))).to.be.true; expect(blacklist.includeKey(new URL('https://github.com'), Key.fromMapKey('a'))).to.be.false; }); |