3 changed files with 10 additions and 2 deletions
@ -1,4 +1,4 @@ |
|||
.PHONY: test |
|||
|
|||
test: |
|||
./node_modules/.bin/mocha tests |
|||
./node_modules/.bin/mocha --ui bdd --reporter spec tests |
|||
|
@ -0,0 +1,6 @@ |
|||
var expect = require('chai').expect |
|||
describe('rate-limitter', function () { |
|||
it('should work', function () { |
|||
expect(true).to.be.true |
|||
}) |
|||
}) |
Loading…
Reference in new issue