Skip to content

Commit

Permalink
chore(no-release): rename varint test file so it is run (#209)
Browse files Browse the repository at this point in the history
Renames file so it's run along with all the other tests.

Before:

```console
  447 passing (613ms)
  1 pending
```

After:

```console
  448 passing (621ms)
  1 pending
```
  • Loading branch information
achingbrain authored Oct 18, 2022
1 parent b00bb45 commit e32fe47
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/test-varint.js → test/test-varint.spec.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
/* globals describe, it */

import { varint } from '../src/index.js'
import chai from 'chai'
import chaiAsPromised from 'chai-as-promised'

chai.use(chaiAsPromised)
const { assert } = chai
import { assert } from 'aegir/chai'

const UTF8 = new TextEncoder()

Expand Down

0 comments on commit e32fe47

Please sign in to comment.