e2e-setup-utilities-support
v2.0.0
Published
> A library for registering common cypress Chainable commands and i18s functionality
Downloads
9
Readme
e2e-setup-utilities-support
A library for registering common cypress Chainable commands and i18s functionality
Usage
import * as e2e from "e2e-setup-utilities-support";
e2e.registerBaseCommands();
e2e.registerIntl("en", {
"intl.key.one":'hello',
"intl.key.two":'world'
});
declare global {
namespace TestIntl {
interface Translations {
"intl.key.one":string
"intl.key.two":string
}
}
}