Compare commits

...
Author SHA1 Message Date
maciek b50151134e fix: back compatibility in markets query - skip unit test 2023-07-19 12:29:45 +02:00
maciek 39fa990a3b fix: back compatibility in markets query 2023-07-19 11:55:25 +02:00
2 changed files with 5 additions and 3 deletions
@@ -372,7 +372,9 @@ describe('Closed', () => {
expect(cells).toEqual(expectedRows.map((m) => m.node.id));
});
it('successor marked should be visible', async () => {
// remove skip after testnet deployment
// eslint-disable-next-line jest/no-disabled-tests
it.skip('successor marked should be visible', async () => {
const mixedMarkets = [
{
__typename: 'MarketEdge' as const,
+2 -2
View File
@@ -104,7 +104,7 @@ export const MarketFieldsFragmentDoc = gql`
open
close
}
successorMarketID
#successorMarketID
}
${DataSourceSpecFragmentDoc}`;
export const MarketsDocument = gql`
@@ -144,4 +144,4 @@ export function useMarketsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<Ma
}
export type MarketsQueryHookResult = ReturnType<typeof useMarketsQuery>;
export type MarketsLazyQueryHookResult = ReturnType<typeof useMarketsLazyQuery>;
export type MarketsQueryResult = Apollo.QueryResult<MarketsQuery, MarketsQueryVariables>;
export type MarketsQueryResult = Apollo.QueryResult<MarketsQuery, MarketsQueryVariables>;