Skip to content

Commit

Permalink
test: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
zanminkian committed Sep 8, 2022
1 parent 9bf163d commit 2ec5919
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/lib/configuration/nest-configuration.loader.spec.ts
@@ -1,6 +1,7 @@
import { Configuration, ConfigurationLoader } from '../../../lib/configuration';
import { NestConfigurationLoader } from '../../../lib/configuration/nest-configuration.loader';
import { Reader } from '../../../lib/readers';
import { getDefaultTsconfigPath } from '../../../lib/utils/get-default-tsconfig-path';

describe('Nest Configuration Loader', () => {
let reader: Reader;
Expand Down Expand Up @@ -48,7 +49,7 @@ describe('Nest Configuration Loader', () => {
compilerOptions: {
assets: [],
plugins: [],
tsConfigPath: 'tsconfig.build.json',
tsConfigPath: getDefaultTsconfigPath(),
webpack: false,
webpackConfigPath: 'webpack.config.js',
},
Expand All @@ -71,7 +72,7 @@ describe('Nest Configuration Loader', () => {
compilerOptions: {
assets: [],
plugins: [],
tsConfigPath: 'tsconfig.build.json',
tsConfigPath: getDefaultTsconfigPath(),
webpack: false,
webpackConfigPath: 'webpack.config.js',
},
Expand Down

0 comments on commit 2ec5919

Please sign in to comment.