diff --git a/README.md b/README.md index 93df668..46c7367 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,10 @@ asyncQuerySelector(selectors); asyncQuerySelector(root, selectors); ``` +```typescript +asyncQuerySelector(selectors, asyncParams); +``` + ```typescript asyncQuerySelector(root, selectors, asyncParams); ``` @@ -229,6 +233,10 @@ asyncQuerySelectorAll(selectors); asyncQuerySelectorAll(root, selectors); ``` +```typescript +asyncQuerySelectorAll(selectors, asyncParams); +``` + ```typescript asyncQuerySelectorAll(root, selectors, asyncParams); ``` @@ -257,6 +265,10 @@ asyncShadowRootQuerySelector(selectors); asyncShadowRootQuerySelector(root, selectors); ``` +```typescript +asyncShadowRootQuerySelector(selectors, asyncParams); +``` + ```typescript asyncShadowRootQuerySelector(root, selectors, asyncParams); ``` diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts index f959d4e..19ea492 100644 --- a/cypress/support/e2e.ts +++ b/cypress/support/e2e.ts @@ -14,8 +14,8 @@ // *********************************************************** // Import commands.js using ES2015 syntax: -import './commands' -import '@cypress/code-coverage/support' +import './commands'; +import '@cypress/code-coverage/support'; // Alternatively you can use CommonJS syntax: // require('./commands') \ No newline at end of file