Skip to content

Commit 79137d0

Browse files
committed
chore: rebase
1 parent 652caf8 commit 79137d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const { stat } = require('fs');
33
const { resolve, sep } = require('path');
44
const { run, extractSummary } = require('../../utils/test-utils');
55

6-
describe('config flag test : Basic config file', () => {
7-
it(' Output Directory as basic/bin, create a file name bundle.js inside bin', done => {
6+
describe('basic config file', () => {
7+
it('Has Output Directory as basic/bin, creates a file name bundle.js', done => {
88
const { stdout } = run(__dirname, ['-c', resolve(__dirname, 'webpack.config.js')]);
99
const summary = extractSummary(stdout);
1010
const outputDir = 'basic/bin';

test/entry/defaults-empty/entry-single-arg.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('single entry flag empty project', () => {
99
it('sets default entry, compiles but throw missing entry module error', done => {
1010
const { stdout, stderr } = run(__dirname);
1111
const summary = extractSummary(stdout);
12-
const outputDir = 'entry/bin';
12+
const outputDir = 'defaults-empty/bin';
1313
const outDirectoryFromCompiler = summary['Output Directory'].split(sep);
1414
const outDirToMatch = outDirectoryFromCompiler.slice(outDirectoryFromCompiler.length - 2, outDirectoryFromCompiler.length).join('/');
1515
expect(outDirToMatch).toContain(outputDir);

0 commit comments

Comments
 (0)