(condition: boolean, ...args: Parameters<typeof it>)
| 17 | // Replace/Update your access token when test locally |
| 18 | const testAuth = process.env.SUBQL_ACCESS_TOKEN_TEST; |
| 19 | const testIf = (condition: boolean, ...args: Parameters<typeof it>) => |
| 20 | // eslint-disable-next-line jest/valid-title, jest/no-disabled-tests |
| 21 | condition ? it(...args) : it.skip(...args); |
| 22 | |
| 23 | jest.setTimeout(120000); |
| 24 | describe('CLI create project and delete project', () => { |
no outgoing calls
no test coverage detected