Ocelot-Social/cypress/integration/Authentication/given_I_have_an_user_account.js
Ulf Gebhardt 2c881c4f48
authentication feature
fixed a problem in login component
2021-04-12 13:22:30 +02:00

7 lines
261 B
JavaScript

import { Given } from "cypress-cucumber-preprocessor/steps";
import narrator from '../data/narrator'
import loginCredentials from '../data/loginCredentials'
Given("I have an user account", () => {
cy.factory().build("user", narrator, loginCredentials);
});