Skip to content

Commit 53575c5

Browse files
committed
fix: Update version number check
1 parent da28a88 commit 53575c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/authentication-client/test/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ describe('@feathersjs/authentication-client', () => {
4646
const token = 'hi';
4747

4848
await auth.setJwt(token);
49-
49+
5050
const res = await auth.getJwt();
5151

5252
assert.strictEqual(res, token);
@@ -58,7 +58,7 @@ describe('@feathersjs/authentication-client', () => {
5858
it('getFromLocation', async () => {
5959
const auth = app.authentication;
6060
let dummyLocation = { hash: 'access_token=testing' } as Location;
61-
61+
6262
let token = await auth.getFromLocation(dummyLocation);
6363

6464
assert.strictEqual(token, 'testing');

packages/feathers/test/application.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ describe('Feathers application', () => {
1818
it('sets the version on main and app instance', () => {
1919
const app = feathers();
2020

21-
assert.strictEqual(feathers.version, '3.0.0-development');
22-
assert.strictEqual(app.version, '3.0.0-development');
21+
assert.strictEqual(feathers.version, '4.0.0-pre.0');
22+
assert.strictEqual(app.version, '4.0.0-pre.0');
2323
});
2424

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

0 commit comments

Comments
 (0)