Skip to content

Commit

Permalink
cleanup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Xon committed Sep 5, 2024
1 parent ecc21a3 commit 59f7d67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/scripts/reducers/choices.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('reducers/choices', () => {
label: 'test',
id: 1,
elementId: '1',
groupId: 1,
group: null,
active: false,
disabled: false,
placeholder: true,
Expand Down
2 changes: 1 addition & 1 deletion test/scripts/reducers/items.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('reducers/items', () => {
value: 'Item one',
label: 'Item one',
id: 1234,
groupId: 1,
group: null,
score: 0,
rank: 0,
customProperties: {
Expand Down
2 changes: 1 addition & 1 deletion test/scripts/store/store.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function shimStore() {

describe('reducers/store', () => {
let instance: Store<Options>;
let subscribeStub: sinon.SinonStub<[listener: StoreListener], void>;
let subscribeStub: sinon.SinonStub<[listener: StoreListener], Store<Options>>;
let dispatchStub: sinon.SinonStub<[action: AnyAction], void>;
let getStateStub: sinon.SinonStub<any[], State>;
let emptyState: State;
Expand Down

0 comments on commit 59f7d67

Please sign in to comment.