We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee7c796 commit 0a60166Copy full SHA for 0a60166
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@mavrou/cy-graphql",
3
- "version": "0.0.3",
+ "version": "0.0.4",
4
"description": "Cypress custom commands for GraphQL testing",
5
"main": "dist/index.js",
6
"types": "dist/types.d.ts",
src/types.ts
@@ -39,8 +39,8 @@ declare namespace Cypress {
39
* Use `cy.interceptGql()` to stub and intercept GraphQL requests and responses.
40
*
41
* @example
42
- * cy.interceptGql('gqlGetProject');
43
- * cy.wait('@gqlGetProject);
+ * cy.interceptGql('HelloWorld');
+ * cy.wait('@HelloWorld);
44
*/
45
interceptGql(operationName:string): Chainable<null>
46
}
0 commit comments