diff options
author | Florian Dold <florian@dold.me> | 2021-03-01 13:02:56 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-03-01 13:02:56 +0100 |
commit | f11a194d1090891f3509f6a52b410926527b099e (patch) | |
tree | 08f24fd46d89e952f7718a7ef3c1c0fe8980b164 /packages/idb-bridge/src/util/canInjectKey.test.ts | |
parent | 48acd573b1a470e54831e4388ea0e4fde410de30 (diff) |
add missing files
Diffstat (limited to 'packages/idb-bridge/src/util/canInjectKey.test.ts')
-rw-r--r-- | packages/idb-bridge/src/util/canInjectKey.test.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/idb-bridge/src/util/canInjectKey.test.ts b/packages/idb-bridge/src/util/canInjectKey.test.ts new file mode 100644 index 000000000..b57dd1c9a --- /dev/null +++ b/packages/idb-bridge/src/util/canInjectKey.test.ts @@ -0,0 +1,24 @@ +/* + Copyright 2017 Jeremy Scheff + Copyright 20201 Taler Systems SA + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + or implied. See the License for the specific language governing + permissions and limitations under the License. +*/ + +import test from "ava"; +import { canInjectKey } from "./canInjectKey"; + +test("canInjectKey", (t) => { + t.false(canInjectKey("foo", null)); + t.true(canInjectKey("foo", {})); +}); |