chore: remove commitlint

chore: update deps

chore: add bundlesize to ci
This commit is contained in:
Jacob Heun
2019-10-24 18:16:41 +02:00
parent 8b8d0c1510
commit d6d06a8404
9 changed files with 17 additions and 15 deletions

View File

@@ -14,7 +14,7 @@ function doTests (fncName, fnc, num, skipBuffersAndStrings) {
// skip this garbage because it's a buffer or a string and we were told do do that
return
}
let args = []
const args = []
for (let i = 0; i < num; i++) {
args.push(garbage)
}

View File

@@ -61,7 +61,7 @@ describe('generateEphemeralKeyPair', () => {
})
})
it(`handles bad curve name`, async () => {
it('handles bad curve name', async () => {
try {
await crypto.keys.generateEphemeralKeyPair('bad name')
} catch (err) {

View File

@@ -24,7 +24,7 @@ describe('Util', () => {
})
it('toBase64 zero padding', (done) => {
let bnpad = new BN('ff', 16)
const bnpad = new BN('ff', 16)
expect(util.toBase64(bnpad, 2)).to.eql('AP8')
done()
})