fmt
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import {beforeAll, expect, test} from 'bun:test'
|
||||
import {PwdWrap, SecretBox} from '..'
|
||||
|
||||
let k1!: string;
|
||||
let k2!: string;
|
||||
let message!: CryptoKey;
|
||||
let k1!: string
|
||||
let k2!: string
|
||||
let message!: CryptoKey
|
||||
|
||||
beforeAll(async () => {
|
||||
k1 = "abc"
|
||||
k2 = "def"
|
||||
k1 = 'abc'
|
||||
k2 = 'def'
|
||||
message = await SecretBox.gen(true)
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user