The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/tests/cypress/integration/03-user-creation.js

18 lines
397 B

import loginPage from '../pageobjects/login.page';
import { username, email, password } from '../../data/user.js';
// Basic usage test start
describe('[User Creation]', function() {
before(() => {
loginPage.open();
});
it('it should create user', () => {
loginPage.gotToRegister();
loginPage.registerNewUser({ username, email, password });
loginPage.submitButton.click();
});
});