Test errors with nwb, React 16, Enzyme 3, Karma, PhantomJS - ReferenceError: Can't find variable: Set
I am using nwb for a React app and am trying to get Enzyme to work in it. The app is also using Karma and PhantomJS. Here is the error I'm seeing:
PhantomJS 2.1.1 (Mac OS X 0.0.0) ERROR
{
"message": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21",
"str": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21"
}
PhantomJS 2.1.1 (Mac OS X 0.0.0): Executed 0 of 0 ERROR (0.36 secs / 0 secs)
Here is my nwb.config.js file:
module.exports = {
type: "react-app",
karma: {
frameworks: ["enzyme-react-16"],
plugins: [
require("karma-enzyme-react-16")
],
testContext: "tests.webpack.js"
}
}
Here is my tests.webpack.js file:
import "./enzyme.js";
const context = require.context("./src", true, /.spec.js$/);
context.keys().forEach(context);
And my enzyme.js file:
import Enzyme from "enzyme";
import Adapter from "enzyme-adapter-react-16";
Enzyme.configure({adapter: new Adapter()});
export * from "enzyme";
I created the enzyme.js file based on a suggestion from the Enzyme docs. I have also tried adding babel-polyfill to my Karma config, but nwb already loads it.
reactjs webpack karma-runner enzyme nwb
add a comment |
I am using nwb for a React app and am trying to get Enzyme to work in it. The app is also using Karma and PhantomJS. Here is the error I'm seeing:
PhantomJS 2.1.1 (Mac OS X 0.0.0) ERROR
{
"message": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21",
"str": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21"
}
PhantomJS 2.1.1 (Mac OS X 0.0.0): Executed 0 of 0 ERROR (0.36 secs / 0 secs)
Here is my nwb.config.js file:
module.exports = {
type: "react-app",
karma: {
frameworks: ["enzyme-react-16"],
plugins: [
require("karma-enzyme-react-16")
],
testContext: "tests.webpack.js"
}
}
Here is my tests.webpack.js file:
import "./enzyme.js";
const context = require.context("./src", true, /.spec.js$/);
context.keys().forEach(context);
And my enzyme.js file:
import Enzyme from "enzyme";
import Adapter from "enzyme-adapter-react-16";
Enzyme.configure({adapter: new Adapter()});
export * from "enzyme";
I created the enzyme.js file based on a suggestion from the Enzyme docs. I have also tried adding babel-polyfill to my Karma config, but nwb already loads it.
reactjs webpack karma-runner enzyme nwb
I couldn't get PhantomJS to work, so I switched over to ChromeHeadless. For that to work, I changed my nwb.config.js tomodule.exports = { type: "react-app", karma: { browsers: ["ChromeHeadless"], frameworks: ["enzyme-react-16", "mocha"], plugins: [ require("karma-enzyme-react-16"), require("karma-chrome-launcher"), require("karma-mocha") ], testContext: "tests.webpack.js" } }
– prapples
Nov 14 '18 at 6:50
add a comment |
I am using nwb for a React app and am trying to get Enzyme to work in it. The app is also using Karma and PhantomJS. Here is the error I'm seeing:
PhantomJS 2.1.1 (Mac OS X 0.0.0) ERROR
{
"message": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21",
"str": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21"
}
PhantomJS 2.1.1 (Mac OS X 0.0.0): Executed 0 of 0 ERROR (0.36 secs / 0 secs)
Here is my nwb.config.js file:
module.exports = {
type: "react-app",
karma: {
frameworks: ["enzyme-react-16"],
plugins: [
require("karma-enzyme-react-16")
],
testContext: "tests.webpack.js"
}
}
Here is my tests.webpack.js file:
import "./enzyme.js";
const context = require.context("./src", true, /.spec.js$/);
context.keys().forEach(context);
And my enzyme.js file:
import Enzyme from "enzyme";
import Adapter from "enzyme-adapter-react-16";
Enzyme.configure({adapter: new Adapter()});
export * from "enzyme";
I created the enzyme.js file based on a suggestion from the Enzyme docs. I have also tried adding babel-polyfill to my Karma config, but nwb already loads it.
reactjs webpack karma-runner enzyme nwb
I am using nwb for a React app and am trying to get Enzyme to work in it. The app is also using Karma and PhantomJS. Here is the error I'm seeing:
PhantomJS 2.1.1 (Mac OS X 0.0.0) ERROR
{
"message": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21",
"str": "ReferenceError: Can't find variable: Set at node_modules/karma-enzyme-react-16/adapter.js:71256:21"
}
PhantomJS 2.1.1 (Mac OS X 0.0.0): Executed 0 of 0 ERROR (0.36 secs / 0 secs)
Here is my nwb.config.js file:
module.exports = {
type: "react-app",
karma: {
frameworks: ["enzyme-react-16"],
plugins: [
require("karma-enzyme-react-16")
],
testContext: "tests.webpack.js"
}
}
Here is my tests.webpack.js file:
import "./enzyme.js";
const context = require.context("./src", true, /.spec.js$/);
context.keys().forEach(context);
And my enzyme.js file:
import Enzyme from "enzyme";
import Adapter from "enzyme-adapter-react-16";
Enzyme.configure({adapter: new Adapter()});
export * from "enzyme";
I created the enzyme.js file based on a suggestion from the Enzyme docs. I have also tried adding babel-polyfill to my Karma config, but nwb already loads it.
reactjs webpack karma-runner enzyme nwb
reactjs webpack karma-runner enzyme nwb
asked Nov 13 '18 at 4:54
prapples
83
83
I couldn't get PhantomJS to work, so I switched over to ChromeHeadless. For that to work, I changed my nwb.config.js tomodule.exports = { type: "react-app", karma: { browsers: ["ChromeHeadless"], frameworks: ["enzyme-react-16", "mocha"], plugins: [ require("karma-enzyme-react-16"), require("karma-chrome-launcher"), require("karma-mocha") ], testContext: "tests.webpack.js" } }
– prapples
Nov 14 '18 at 6:50
add a comment |
I couldn't get PhantomJS to work, so I switched over to ChromeHeadless. For that to work, I changed my nwb.config.js tomodule.exports = { type: "react-app", karma: { browsers: ["ChromeHeadless"], frameworks: ["enzyme-react-16", "mocha"], plugins: [ require("karma-enzyme-react-16"), require("karma-chrome-launcher"), require("karma-mocha") ], testContext: "tests.webpack.js" } }
– prapples
Nov 14 '18 at 6:50
I couldn't get PhantomJS to work, so I switched over to ChromeHeadless. For that to work, I changed my nwb.config.js to
module.exports = { type: "react-app", karma: { browsers: ["ChromeHeadless"], frameworks: ["enzyme-react-16", "mocha"], plugins: [ require("karma-enzyme-react-16"), require("karma-chrome-launcher"), require("karma-mocha") ], testContext: "tests.webpack.js" } }
– prapples
Nov 14 '18 at 6:50
I couldn't get PhantomJS to work, so I switched over to ChromeHeadless. For that to work, I changed my nwb.config.js to
module.exports = { type: "react-app", karma: { browsers: ["ChromeHeadless"], frameworks: ["enzyme-react-16", "mocha"], plugins: [ require("karma-enzyme-react-16"), require("karma-chrome-launcher"), require("karma-mocha") ], testContext: "tests.webpack.js" } }
– prapples
Nov 14 '18 at 6:50
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274042%2ftest-errors-with-nwb-react-16-enzyme-3-karma-phantomjs-referenceerror-can%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274042%2ftest-errors-with-nwb-react-16-enzyme-3-karma-phantomjs-referenceerror-can%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I couldn't get PhantomJS to work, so I switched over to ChromeHeadless. For that to work, I changed my nwb.config.js to
module.exports = { type: "react-app", karma: { browsers: ["ChromeHeadless"], frameworks: ["enzyme-react-16", "mocha"], plugins: [ require("karma-enzyme-react-16"), require("karma-chrome-launcher"), require("karma-mocha") ], testContext: "tests.webpack.js" } }
– prapples
Nov 14 '18 at 6:50