Skip to content

Commit 35873bb

Browse files
committed
test: update
1 parent 4dd51fe commit 35873bb

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

test/cli/cli.test.js

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -460,32 +460,12 @@ describe('CLI', () => {
460460
.catch(done);
461461
});
462462

463-
it('should log public path', (done) => {
464-
testBin(
465-
'--no-color',
466-
path.resolve(__dirname, '../fixtures/dev-public-path/webpack.config.js')
467-
)
468-
.then((output) => {
469-
expect(output.exitCode).toEqual(0);
470-
done();
471-
})
472-
.catch((err) => {
473-
// for windows
474-
expect(err.stderr).toContain(
475-
"webpack output is served from '/foo/bar' URL"
476-
);
477-
expect(err.stdout).toContain('main.js');
478-
done();
479-
});
480-
});
481-
482463
it('should log static', (done) => {
483464
testBin(
484465
'--no-color',
485466
path.resolve(__dirname, '../fixtures/static/webpack.config.js')
486467
)
487468
.then((output) => {
488-
console.log(output);
489469
expect(output.exitCode).toEqual(0);
490470
done();
491471
})

0 commit comments

Comments
 (0)