diff options
author | Florian Dold <florian@dold.me> | 2021-06-14 16:08:58 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-06-14 16:08:58 +0200 |
commit | 1cde390c23f2668a3777752632c48febd10a28ee (patch) | |
tree | d5efa59c867b8a92e32fde37da841c4c0b8154fd /packages/taler-wallet-core/src/crypto/talerCrypto-test.ts | |
parent | bed86d96135d3f7faa34d9c1e377c8fb2b06abea (diff) |
fix up imports, no more esm in tests
Diffstat (limited to 'packages/taler-wallet-core/src/crypto/talerCrypto-test.ts')
-rw-r--r-- | packages/taler-wallet-core/src/crypto/talerCrypto-test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/taler-wallet-core/src/crypto/talerCrypto-test.ts b/packages/taler-wallet-core/src/crypto/talerCrypto-test.ts index 99a0e12c0..3718290d7 100644 --- a/packages/taler-wallet-core/src/crypto/talerCrypto-test.ts +++ b/packages/taler-wallet-core/src/crypto/talerCrypto-test.ts @@ -30,9 +30,9 @@ import { stringToBytes, bytesToString, rsaVerify, -} from "./talerCrypto"; -import { sha512, kdf } from "./primitives/kdf"; -import * as nacl from "./primitives/nacl-fast"; +} from "./talerCrypto.js"; +import { sha512, kdf } from "./primitives/kdf.js"; +import * as nacl from "./primitives/nacl-fast.js"; test("encoding", (t) => { const s = "Hello, World"; |