Zia Zon

Results 18 comments of Zia Zon

@magiconair or anyone else able to help with this?

The solution I've come up with (I'm not a fan of doing it this way though) is fire the events in the auth controller on the different stages of auth...

proposed solution: https://github.com/MarceloPrado/has-changed-path/issues/29#issuecomment-1077921294

The approach I can think of for this would be to use: ``` on: pull_request: types: - closed ``` and then run the job conditionally on `if: github.event.pull_request.merged == true`...

I decided to just roll my own check command instead which looks like this: ``` - name: Check for Changes id: changes run: | echo ::set-output name=HAS_CHANGES::$(git diff --quiet HEAD~${{...

looking at the code, not it doesn't.

Any updates on this? running into the same issue and I would rather not use store functionality to test my component behavior...

I got mine to work by using `store.hotUpdate()` to "swap" the store in following tests.

sorry for the delay! been a bit busy :/ so lets assume you use `getModule(FooModule, this.$store)` from inside a component computed property like ```typescript get fooModule() { return getModule(FooModule, this.$store)...

I ended up doing this to get it working: ```typescript export class PointTransformer implements ValueTransformer { to(value: LatLongPoint) { const { lat, lon } = value; return `${lat}, ${lon}`; }...