rkrisztian

Results 28 comments of rkrisztian

That is not a good way at all, considering that: * Gradle 4 already deprecates `Task.execute`, and Gradle 5 even removes it. (And this plugin hasn't been updated since late...

If feasible, I would suggest to identify pipelines with numbers, like in a database.

For problem 1 I found a solution: ```diff diff --git a/apps/test-project/src/app/app.component.cy-spec.ts b/apps/test-project/src/app/app.component.cy-spec.ts index 8821229..293d044 100644 --- a/apps/test-project/src/app/app.component.cy-spec.ts +++ b/apps/test-project/src/app/app.component.cy-spec.ts @@ -1,10 +1,16 @@ import { mount } from '@jscutlery/cypress-angular/mount'; import...

For problem 2, I've been experimenting with the following: ```typescript import * as enJson from '../../assets/i18n/en.json'; describe('MyComponent', () => { it('shows the title', () => { mount(MyComponent, { imports: [...

For problem 3, while I think that accessing component fields or methods may be a bad practice due to testing implementation details, and the Angular testing library agrees that [if...

@azaeng04 , thanks, but it feels like a risky combination of libraries to me in terms of future proofness. I would rather minimize my dependencies, and not only _cypress-angular-dev-server_ is...

@edbzn , does your fix also resolve https://github.com/jscutlery/test-utils/issues/69 (earlier report)?

Is this PR still needed? The original issue is closed.

Yes, **the power of copy-pasting should never be underestimated**. Examples don't just share/recommend code, they also ad-hoc serve as sharing/recommending coding style, like it or not. Because every time I...

I have a problem with `mergeMap` used again. Once I reported https://github.com/abdulhaq-e/ngrx-json-api/issues/128 which I can no longer reproduce. But now I have a new problem that when I navigate away...