This commit is contained in:
morrigan 2019-10-31 14:29:16 +01:00
parent 8809365da2
commit 8e86b20a12
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { encrypt } from './encrypt';
const tag = '/noise/1.0.0';
const tag = '/noise';
export {
tag,

View File

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