Skip to content

Commit

Permalink
test(): fix broken application config test
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Feb 25, 2021
1 parent 040eb3c commit 1187212
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/core/test/application-config.spec.ts
@@ -1,7 +1,7 @@
import { RequestMethod } from '@nestjs/common';
import { GlobalPrefixOptions } from '@nestjs/common/interfaces';
import { expect } from 'chai';
import { ApplicationConfig } from '../application-config';
import { GlobalPrefixOptions } from '@nestjs/common/interfaces';
import { RequestMethod } from '@nestjs/common';

describe('ApplicationConfig', () => {
let appConfig: ApplicationConfig;
Expand Down Expand Up @@ -127,8 +127,8 @@ describe('ApplicationConfig', () => {
expect(appConfig.getVersioning()).to.be.eql(options);
});

it('should have null as the versioning by default', () => {
expect(appConfig.getVersioning()).to.be.eql(null);
it('should have undefined as the versioning by default', () => {
expect(appConfig.getVersioning()).to.be.eql(undefined);
});
});
});

0 comments on commit 1187212

Please sign in to comment.