mirror of
https://github.com/maputnik/editor.git
synced 2025-12-06 06:10:00 +00:00
Co-authored-by: shelly_goldblit <shelly_goldblit@dell.com> Co-authored-by: HarelM <harel.mazor@gmail.com>
20 lines
391 B
TypeScript
20 lines
391 B
TypeScript
import { CypressHelper } from "@shellygo/cypress-test-utils";
|
|
|
|
export default class MaputnikCypressHelper {
|
|
private helper = new CypressHelper({ defaultDataAttribute: "data-wd-key" });
|
|
|
|
public given = {
|
|
...this.helper.given,
|
|
};
|
|
|
|
public get = {
|
|
...this.helper.get,
|
|
};
|
|
|
|
public when = {
|
|
...this.helper.when,
|
|
};
|
|
|
|
public beforeAndAfter = this.helper.beforeAndAfter;
|
|
}
|