We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3996ec commit 47453cbCopy full SHA for 47453cb
test/e2e/ProvidePlugin.test.js
@@ -4,7 +4,7 @@ const testServer = require('../helpers/test-server');
4
const config = require('../fixtures/provide-plugin-config/webpack.config');
5
const runBrowser = require('../helpers/run-browser');
6
7
-describe.skip('ProvidePlugin', () => {
+describe('ProvidePlugin', () => {
8
describe('inline', () => {
9
beforeAll((done) => {
10
const options = {
test/fixtures/provide-plugin-config/foo.js
@@ -1,6 +1,7 @@
1
'use strict';
2
3
-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
0 commit comments