Skip to content
This repository has been archived by the owner on Dec 24, 2023. It is now read-only.

Commit

Permalink
chore: update tabbable command names
Browse files Browse the repository at this point in the history
  • Loading branch information
wswebcreation committed Feb 24, 2020
1 parent 7d8284c commit 71faf3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {ImageCompareResult} from "..";
/**
* Compare an image with all tab executions
*/
export default async function checkTabbable(
export default async function checkTabbablePage(
methods: Methods,
instanceData: InstanceData,
folders: Folders,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import removeElementFromDom from "../clientSideScripts/removeElementFromDom";
/**
* Saves an image of all tab executions
*/
export default async function saveTabbable(
export default async function saveTabbablePage(
methods: Methods,
instanceData: InstanceData,
folders: Folders,
Expand Down
8 changes: 4 additions & 4 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import BaseClass from './base';
import saveScreen from './commands/saveScreen';
import saveElement from './commands/saveElement';
import saveFullPageScreen from './commands/saveFullPageScreen';
import saveTabbable from './commands/saveTabbable';
import saveTabbablePage from './commands/saveTabbablePage';
import checkScreen from './commands/checkScreen';
import checkElement from './commands/checkElement';
import checkFullPageScreen from './commands/checkFullPageScreen';
import checkTabbable from './commands/checkTabbable';
import checkTabbablePage from './commands/checkTabbablePage';
import {ClassOptions} from './helpers/options.interface';
import {ImageCompareResult} from './methods/images.interfaces';

Expand All @@ -17,9 +17,9 @@ export {
saveScreen,
saveElement,
saveFullPageScreen,
saveTabbable,
saveTabbablePage,
checkScreen,
checkElement,
checkFullPageScreen,
checkTabbable,
checkTabbablePage,
};

0 comments on commit 71faf3f

Please sign in to comment.