diff --git a/template/config/nightwatch/nightwatch.conf.js b/template/config/nightwatch/nightwatch.conf.cjs similarity index 97% rename from template/config/nightwatch/nightwatch.conf.js rename to template/config/nightwatch/nightwatch.conf.cjs index 05889c61..542647e5 100644 --- a/template/config/nightwatch/nightwatch.conf.js +++ b/template/config/nightwatch/nightwatch.conf.cjs @@ -21,10 +21,10 @@ module.exports = { page_objects_path: [], // See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html - custom_commands_path: ['nightwatch/custom-commands'], + custom_commands_path: [], // See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-assertions.html - custom_assertions_path: ['nightwatch/custom-assertions'], + custom_assertions_path: [], // See https://nightwatchjs.org/guide/extending-nightwatch/adding-plugins.html plugins: ['@nightwatch/vue'], diff --git a/template/config/nightwatch/nightwatch/custom-assertions/elementHasCount.js b/template/config/nightwatch/nightwatch/custom-assertions/elementHasCount.js deleted file mode 100644 index 1ac2aa2c..00000000 --- a/template/config/nightwatch/nightwatch/custom-assertions/elementHasCount.js +++ /dev/null @@ -1,45 +0,0 @@ -/** - * A custom Nightwatch assertion. The assertion name is the filename. - * - * Example usage: - * browser.assert.elementHasCount(selector, count) - * - * For more information on custom assertions see: - * https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-assertions.html - * - * @param {string} selector - * @param {number} count - */ - -exports.assertion = function elementHasCount(selector, count) { - // Message to be displayed on the console while running this assertion. - this.message = `Testing if element <${selector}> has count: ${count}` - - // Expected value of the assertion, to be displayed in case of failure. - this.expected = count - - // Given the result value (from `this.value` below), this function will - // evaluate if the assertion has passed. - this.evaluate = function (value) { - return value === count - } - - // Retrieve the value from the result object we got after running the - // assertion command (defined below), which is to be evaluated against - // the value passed into the assertion as the second argument. - this.value = function (result) { - return result.value - } - - // Script to be executed in the browser to find the actual element count. - function elementCountScript(_selector) { - // eslint-disable-next-line - return document.querySelectorAll(_selector).length - } - - // The command to be executed by the assertion runner, to find the actual - // result. Nightwatch API is available as `this.api`. - this.command = function (callback) { - this.api.execute(elementCountScript, [selector], callback) - } -} diff --git a/template/config/nightwatch/nightwatch/custom-assertions/elementHasCount.ts b/template/config/nightwatch/nightwatch/custom-assertions/elementHasCount.ts deleted file mode 100644 index 13577288..00000000 --- a/template/config/nightwatch/nightwatch/custom-assertions/elementHasCount.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * A custom Nightwatch assertion. The assertion name is the filename. - * - * Example usage: - * browser.assert.elementHasCount(selector, count) - * - * For more information on custom assertions see: - * https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-assertions.html - * - */ - -exports.assertion = function elementHasCount(selector: string, count: number) { - // Message to be displayed on the console while running this assertion. - this.message = `Testing if element <${selector}> has count: ${count}` - - // Expected value of the assertion, to be displayed in case of failure. - this.expected = count - - // Given the result value (from `this.value` below), this function will - // evaluate if the assertion has passed. - this.evaluate = function (value: any) { - return value === count - } - - // Retrieve the value from the result object we got after running the - // assertion command (defined below), which is to be evaluated against - // the value passed into the assertion as the second argument. - this.value = function (result: Record) { - return result.value - } - - // Script to be executed in the browser to find the actual element count. - function elementCountScript(_selector: string) { - // eslint-disable-next-line - return document.querySelectorAll(_selector).length - } - - // The command to be executed by the assertion runner, to find the actual - // result. Nightwatch API is available as `this.api`. - this.command = function (callback: () => void) { - this.api.execute(elementCountScript, [selector], callback) - } -} diff --git a/template/config/nightwatch/nightwatch/custom-commands/strictClick.js b/template/config/nightwatch/nightwatch/custom-commands/strictClick.js deleted file mode 100644 index f342044d..00000000 --- a/template/config/nightwatch/nightwatch/custom-commands/strictClick.js +++ /dev/null @@ -1,19 +0,0 @@ -/** - * A non-class-based custom-command in Nightwatch. The command name is the filename. - * - * Usage: - * browser.strictClick(selector) - * - * This command is not used yet used in any of the examples. - * - * For more information on working with custom-commands see: - * https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html - * - * @param {string} selector - */ - -module.exports = { - command: function (selector) { - return this.waitForElementVisible(selector).click(selector) - } -} diff --git a/template/config/nightwatch/nightwatch/custom-commands/strictClick.ts b/template/config/nightwatch/nightwatch/custom-commands/strictClick.ts deleted file mode 100644 index 37b49209..00000000 --- a/template/config/nightwatch/nightwatch/custom-commands/strictClick.ts +++ /dev/null @@ -1,18 +0,0 @@ -/** - * A non-class-based custom-command in Nightwatch. The command name is the filename. - * - * Usage: - * browser.strictClick(selector) - * - * This command is not used yet used in any of the examples. - * - * For more information on working with custom-commands see: - * https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html - * - */ - -module.exports = { - command: function (selector: string) { - return this.waitForElementVisible(selector).click(selector) - } -} diff --git a/template/config/nightwatch/nightwatch/nightwatch.d.ts b/template/config/nightwatch/nightwatch/nightwatch.d.ts index ea1f6066..616e63f9 100644 --- a/template/config/nightwatch/nightwatch/nightwatch.d.ts +++ b/template/config/nightwatch/nightwatch/nightwatch.d.ts @@ -2,10 +2,12 @@ import { NightwatchCustomAssertions, NightwatchCustomCommands } from 'nightwatch declare module 'nightwatch' { interface NightwatchCustomAssertions { - elementHasCount: (selector: string, count: number) => NightwatchBrowser + // Add your custom assertions' types here + // elementHasCount: (selector: string, count: number) => NightwatchBrowser } interface NightwatchCustomCommands { - strictClick: (selector: string) => NightwatchBrowser + // Add your custom commands' types here + // strictClick: (selector: string) => NightwatchBrowser } } diff --git a/template/config/nightwatch/package.json b/template/config/nightwatch/package.json index 62828e38..ce5fa758 100644 --- a/template/config/nightwatch/package.json +++ b/template/config/nightwatch/package.json @@ -1,5 +1,4 @@ { - "type": "commonjs", "scripts": { "test:e2e": "nightwatch tests/e2e/*" },