vue-test-utils conflict between suits












0














I have two test suits, if I run them independently all tests pass :
enter image description here



But if I run them together, there seems to be a problem with my wrapper




TypeError: Cannot read property 'props' of undefined:
enter image description here




Here's my what both of my "beforeEach" looks like



TypeError: Cannot read property 'props' of undefined



describe('Modal.vue', () => {
let store: any;
let wrapper: any;
beforeEach(() => {
const localVue = createLocalVue();
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Modal, {
localVue,
store,
});
});
// Tests...
});

describe('Navigation.vue', () => {

let store: any;
let wrapper: any;

beforeEach(() => {
const router = new VueRouter();
const localVue = createLocalVue();
localVue.use(VueRouter);
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Navigation, {
localVue,
router,
store,
propsData: {
user: {},
},
});
});

it('show a login button when user is a guest', () => {
setUserAsGuest();

expect(wrapper.html()).toContain('Login');
});

const setUserAsGuest = () => {
wrapper.setProps({
user: {
role: 'guest',
},
});
// More Tests...
});


I have tried everything that I could think of, so I am now turning myself to you guys!










share|improve this question
























  • Could you, please, provide relevant part of test code that fails to access props?
    – aBiscuit
    Nov 11 at 21:39










  • @aBiscuit I updated the code for Navigation.vue with the test that fails
    – Michael Villeneuve
    Nov 11 at 22:09










  • Which version of vue and vue-test-utils do you use in this project?
    – aBiscuit
    Nov 12 at 0:19












  • Vue is 2.5.17, vue-test-utils is 1.0.0-beta.20. The project was installed using vue-cli 3 so I didn't install them manually.
    – Michael Villeneuve
    Nov 12 at 18:09
















0














I have two test suits, if I run them independently all tests pass :
enter image description here



But if I run them together, there seems to be a problem with my wrapper




TypeError: Cannot read property 'props' of undefined:
enter image description here




Here's my what both of my "beforeEach" looks like



TypeError: Cannot read property 'props' of undefined



describe('Modal.vue', () => {
let store: any;
let wrapper: any;
beforeEach(() => {
const localVue = createLocalVue();
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Modal, {
localVue,
store,
});
});
// Tests...
});

describe('Navigation.vue', () => {

let store: any;
let wrapper: any;

beforeEach(() => {
const router = new VueRouter();
const localVue = createLocalVue();
localVue.use(VueRouter);
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Navigation, {
localVue,
router,
store,
propsData: {
user: {},
},
});
});

it('show a login button when user is a guest', () => {
setUserAsGuest();

expect(wrapper.html()).toContain('Login');
});

const setUserAsGuest = () => {
wrapper.setProps({
user: {
role: 'guest',
},
});
// More Tests...
});


I have tried everything that I could think of, so I am now turning myself to you guys!










share|improve this question
























  • Could you, please, provide relevant part of test code that fails to access props?
    – aBiscuit
    Nov 11 at 21:39










  • @aBiscuit I updated the code for Navigation.vue with the test that fails
    – Michael Villeneuve
    Nov 11 at 22:09










  • Which version of vue and vue-test-utils do you use in this project?
    – aBiscuit
    Nov 12 at 0:19












  • Vue is 2.5.17, vue-test-utils is 1.0.0-beta.20. The project was installed using vue-cli 3 so I didn't install them manually.
    – Michael Villeneuve
    Nov 12 at 18:09














0












0








0







I have two test suits, if I run them independently all tests pass :
enter image description here



But if I run them together, there seems to be a problem with my wrapper




TypeError: Cannot read property 'props' of undefined:
enter image description here




Here's my what both of my "beforeEach" looks like



TypeError: Cannot read property 'props' of undefined



describe('Modal.vue', () => {
let store: any;
let wrapper: any;
beforeEach(() => {
const localVue = createLocalVue();
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Modal, {
localVue,
store,
});
});
// Tests...
});

describe('Navigation.vue', () => {

let store: any;
let wrapper: any;

beforeEach(() => {
const router = new VueRouter();
const localVue = createLocalVue();
localVue.use(VueRouter);
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Navigation, {
localVue,
router,
store,
propsData: {
user: {},
},
});
});

it('show a login button when user is a guest', () => {
setUserAsGuest();

expect(wrapper.html()).toContain('Login');
});

const setUserAsGuest = () => {
wrapper.setProps({
user: {
role: 'guest',
},
});
// More Tests...
});


I have tried everything that I could think of, so I am now turning myself to you guys!










share|improve this question















I have two test suits, if I run them independently all tests pass :
enter image description here



But if I run them together, there seems to be a problem with my wrapper




TypeError: Cannot read property 'props' of undefined:
enter image description here




Here's my what both of my "beforeEach" looks like



TypeError: Cannot read property 'props' of undefined



describe('Modal.vue', () => {
let store: any;
let wrapper: any;
beforeEach(() => {
const localVue = createLocalVue();
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Modal, {
localVue,
store,
});
});
// Tests...
});

describe('Navigation.vue', () => {

let store: any;
let wrapper: any;

beforeEach(() => {
const router = new VueRouter();
const localVue = createLocalVue();
localVue.use(VueRouter);
localVue.use(Vuex);
store = new Vuex.Store(cloneDeep(StoreConfig));
wrapper = shallowMount(Navigation, {
localVue,
router,
store,
propsData: {
user: {},
},
});
});

it('show a login button when user is a guest', () => {
setUserAsGuest();

expect(wrapper.html()).toContain('Login');
});

const setUserAsGuest = () => {
wrapper.setProps({
user: {
role: 'guest',
},
});
// More Tests...
});


I have tried everything that I could think of, so I am now turning myself to you guys!







javascript vue.js vuejs2 mocha vue-test-utils






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 11 at 22:08

























asked Nov 11 at 21:03









Michael Villeneuve

1,82831935




1,82831935












  • Could you, please, provide relevant part of test code that fails to access props?
    – aBiscuit
    Nov 11 at 21:39










  • @aBiscuit I updated the code for Navigation.vue with the test that fails
    – Michael Villeneuve
    Nov 11 at 22:09










  • Which version of vue and vue-test-utils do you use in this project?
    – aBiscuit
    Nov 12 at 0:19












  • Vue is 2.5.17, vue-test-utils is 1.0.0-beta.20. The project was installed using vue-cli 3 so I didn't install them manually.
    – Michael Villeneuve
    Nov 12 at 18:09


















  • Could you, please, provide relevant part of test code that fails to access props?
    – aBiscuit
    Nov 11 at 21:39










  • @aBiscuit I updated the code for Navigation.vue with the test that fails
    – Michael Villeneuve
    Nov 11 at 22:09










  • Which version of vue and vue-test-utils do you use in this project?
    – aBiscuit
    Nov 12 at 0:19












  • Vue is 2.5.17, vue-test-utils is 1.0.0-beta.20. The project was installed using vue-cli 3 so I didn't install them manually.
    – Michael Villeneuve
    Nov 12 at 18:09
















Could you, please, provide relevant part of test code that fails to access props?
– aBiscuit
Nov 11 at 21:39




Could you, please, provide relevant part of test code that fails to access props?
– aBiscuit
Nov 11 at 21:39












@aBiscuit I updated the code for Navigation.vue with the test that fails
– Michael Villeneuve
Nov 11 at 22:09




@aBiscuit I updated the code for Navigation.vue with the test that fails
– Michael Villeneuve
Nov 11 at 22:09












Which version of vue and vue-test-utils do you use in this project?
– aBiscuit
Nov 12 at 0:19






Which version of vue and vue-test-utils do you use in this project?
– aBiscuit
Nov 12 at 0:19














Vue is 2.5.17, vue-test-utils is 1.0.0-beta.20. The project was installed using vue-cli 3 so I didn't install them manually.
– Michael Villeneuve
Nov 12 at 18:09




Vue is 2.5.17, vue-test-utils is 1.0.0-beta.20. The project was installed using vue-cli 3 so I didn't install them manually.
– Michael Villeneuve
Nov 12 at 18:09

















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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253219%2fvue-test-utils-conflict-between-suits%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253219%2fvue-test-utils-conflict-between-suits%23new-answer', 'question_page');
}
);

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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini