Skip to content

Commit

Permalink
fix: Fix versioning tests. Closes #1346
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed May 9, 2019
1 parent b97a305 commit dd519f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/feathers/test/application.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ describe('Feathers application', () => {
it('sets the version on main and app instance', () => {
const app = feathers();

assert.strictEqual(feathers.version, '4.0.0-pre.0');
assert.strictEqual(app.version, '4.0.0-pre.0');
assert.ok(feathers.version > '4.0.0');
assert.ok(app.version > '4.0.0');
});

it('is an event emitter', done => {
Expand Down

0 comments on commit dd519f6

Please # to comment.