tja4472

Results 4 issues of tja4472

With the latest version of "@jscutlery/cypress-angular": "0.9.2" I'm getting error > ERROR in ../../node_modules/@jscutlery/cypress-mount/src/lib/cypress-mount.d.ts:6:28 - error TS2307: Cannot find module '@storybook/angular' or its corresponding type declarations. > 6 import type...

bug
cypress-mount
cypress-angular

### database.spec.ts ```typescript describe('unwrap & stringify', () => { it('primitive', () => { const key = '-KtMoWAYsEtB4qIcroCw'; const value = 'some value'; const expectedResult = '{"$value":"some value","$key":"-KtMoWAYsEtB4qIcroCw"}'; const unwrappedValue =...

Hello again Online update allows for the update of individual properties. ```typescript this.fb_CurrentTodos.update(itemsToSave[x].$key, { index: x }); ``` Offline: Just the updated property is returned. ``` todo.data.service.ts:24 >>>>>>>>>>AngularFireOfflineDatabase.list> (2) [{…},...

Should this be? ``` export interface RedditPostsArray { [index: string]: RedditPosts; } export const postsByReddit: ActionReducer = (state: RedditPostsArray = {}, action: Action) => { switch (action.type) { case INVALIDATE_REDDIT:...