Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/e2e/ProvidePlugin.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const testServer = require('../helpers/test-server');
const config = require('../fixtures/provide-plugin-config/webpack.config');
const runBrowser = require('../helpers/run-browser');

describe.skip('ProvidePlugin', () => {
describe('ProvidePlugin', () => {
describe('inline', () => {
beforeAll((done) => {
const options = {
Expand Down
3 changes: 2 additions & 1 deletion test/fixtures/provide-plugin-config/foo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';

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

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