George Katsanos

Results 99 comments of George Katsanos

@luftywiranda13 I'm definitely then disabling the rule manually.. in fact in that case I'd personally go with the arrow/brace syntax and not the one liner.

Hm, interesting, I added this: ```js beforeEach(() => { cy.setCookie( "CookieConsent", "{stamp:%27vjpVJCpe9QeDb7Ba7mmn6GE5TtAmzBnDEVA8csu2OzT/ZGu6jV7YGw==%27%2Cnecessary:true%2Cpreferences:true%2Cstatistics:true%:%27gr%27}" ) }) ``` in my e2e.js file and it worked. Should this be in documentation?

@AnneKlapwijk is this repo still maintained? Would you like to pass it on?

@lostfields is there anyway we can help you to do this? it's pretty essential for playing around with loops, algorithms etc (which is I guess one of the main reasons...

still open after a year :( no hope

I was looking at http://facebook.github.io/jast/docs/en/tutorial-async.html . I was wondering how I can combine that with Vuex.

Essentially Imagine you have an action such as: ```js export const fetchItems = ({ commit, dispatch, state }) => { commit(types.PRE_HTTP_REQUEST); api.fetchItems(state.apiEntryPoint, state.nextPage).then((data) => { dispatch('receiveItems', data); }).catch(() => {...

@eddyerburgh I meant having an example page that basically does this: https://vuex.vuejs.org/en/testing.html but with Jest instead

Sorry I just looked around and I see in chapter-6 a pretty good example : https://github.com/eddyerburgh/chapter-6/blob/master/src/store/__tests__/actions.spec.js Yeah I was wondering if a small example on how to test the store...