Skip to content

Commit

Permalink
RSDK-5477-2 - fix tests (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
purplenicole730 authored Oct 31, 2023
1 parent 4479cce commit 8a0858c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/data-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ describe('DataClient tests', () => {
const promise = await subject().tabularDataByFilter();
expect(promise.length).toEqual(2);
const [data1, data2] = promise;
expect(data1).toMatchObject({ key: 'value1' });
expect(data2).toMatchObject({ key: 'value2' });
expect(data1?.data).toMatchObject({ key: 'value1' });
expect(data2?.data).toMatchObject({ key: 'value2' });
});

test('get filtered tabular data', async () => {
Expand Down

0 comments on commit 8a0858c

Please sign in to comment.