mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-24 16:00:11 -04:00
Fix type error for the AppState in app-state-reducer-spec
This commit is contained in:
parent
ece4935d34
commit
fe2ec7ce52
@ -5,6 +5,7 @@ import { Overlap } from '../common/bible-reference';
|
|||||||
import { IStorable, Storable } from '../common/storable';
|
import { IStorable, Storable } from '../common/storable';
|
||||||
import { CardType, CardIcons, CardItem } from '../models/card-state';
|
import { CardType, CardIcons, CardItem } from '../models/card-state';
|
||||||
import { SavedPage } from '../models/page-state';
|
import { SavedPage } from '../models/page-state';
|
||||||
|
import { AppState } from '../models/app-state';
|
||||||
|
|
||||||
describe('AppService Reducer', () => {
|
describe('AppService Reducer', () => {
|
||||||
const preState = {
|
const preState = {
|
||||||
@ -50,8 +51,9 @@ describe('AppService Reducer', () => {
|
|||||||
passage: 'menu_book',
|
passage: 'menu_book',
|
||||||
strongs: 'speaker_notes',
|
strongs: 'speaker_notes',
|
||||||
note: 'text_snippet',
|
note: 'text_snippet',
|
||||||
|
savedPage: 'saved page',
|
||||||
},
|
},
|
||||||
};
|
} as AppState;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
TestBed.configureTestingModule({});
|
TestBed.configureTestingModule({});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user