Skip to content

Commit

Permalink
Fix forgotten Mocha test, to switch to Jest
Browse files Browse the repository at this point in the history
  • Loading branch information
madarche committed Apr 23, 2020
1 parent 63e2716 commit 903638f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/convict/test/get.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('convict get()', function() {
expect(conf.get('foo.baz.name with spaces.name_with_underscores')).toBe(true)
})

it("must throw if conf doesn't exist", function() {
test("must throw if conf doesn't exist", function() {
expect(function() {
conf.get('foo.no')
}).toThrow()
Expand Down

0 comments on commit 903638f

Please sign in to comment.