Fix for cypress randomstrings

This commit is contained in:
Jamie Curnow
2023-01-09 08:58:32 +10:00
parent f6b219772d
commit 0a50672ab6
4 changed files with 20 additions and 18 deletions

View File

@ -1,16 +1,17 @@
/// <reference types="Cypress" />
const fns = require('../support/functions');
describe('Users endpoints', () => {
let token;
let uniqueEmail = 'jc_' + fns.generateRandomString(10) + '@example.com';
let myUserID = 0;
let uniqueEmail;
let myUserID = 0;
before(() => {
cy.getToken().then((tok) => {
token = tok;
});
cy.randomString(10).then((str) => {
uniqueEmail = 'jc_' + str + '@example.com';
});
});
it('Should be able to get yourself', function() {