Init project

This commit is contained in:
morrigan
2019-10-30 15:02:03 +01:00
parent b08ea40075
commit 8fb80913f3
10 changed files with 3429 additions and 0 deletions

9
test/index.test.ts Normal file
View File

@ -0,0 +1,9 @@
import { expect } from "chai";
import { tag, encrypt} from "../src";
describe("Index", () => {
it("should expose right tag and encrypt function", () => {
expect(tag).to.equal('/noise/1.0.0');
expect(typeof(encrypt)).to.equal('function');
})
});