Skip to content

Commit 47453cb

Browse files
knagaitsevevilebottnawi
authored andcommittedJun 10, 2019
fix(test): fixed ProvidePlugin.test.js (#2002)
1 parent a3996ec commit 47453cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

Diff for: ‎test/e2e/ProvidePlugin.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const testServer = require('../helpers/test-server');
44
const config = require('../fixtures/provide-plugin-config/webpack.config');
55
const runBrowser = require('../helpers/run-browser');
66

7-
describe.skip('ProvidePlugin', () => {
7+
describe('ProvidePlugin', () => {
88
describe('inline', () => {
99
beforeAll((done) => {
1010
const options = {

Diff for: ‎test/fixtures/provide-plugin-config/foo.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

3-
const SockJSClient = require('../../../client-src/clients/SockJSClient');
3+
// 'npm run prepare' must be run for this to work during testing
4+
const SockJSClient = require('../../../client/clients/SockJSClient');
45

56
window.expectedClient = SockJSClient;
67
// eslint-disable-next-line camelcase, no-undef

0 commit comments

Comments
 (0)
Please sign in to comment.