1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-25 08:09:43 +02:00

Refactor mirage config and tests to use new factories

This commit is contained in:
zinyando 2016-07-12 14:38:33 +02:00
parent 663995b60d
commit a215a05a88
5 changed files with 69 additions and 276 deletions

View file

@ -1,11 +1,11 @@
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
// by contacting <sales@documize.com>.
//
// https://documize.com
@ -16,6 +16,7 @@ moduleForAcceptance('Acceptance | user profile');
test('visiting /profile', function (assert) {
server.createList('folder', 2);
server.createList('user', 2);
authenticateUser();
visit('/profile');
@ -29,6 +30,7 @@ test('visiting /profile', function (assert) {
test('changing user details and email ', function (assert) {
server.createList('folder', 2);
server.createList('user', 2);
authenticateUser();
visit('/profile');
@ -49,4 +51,4 @@ test('changing user details and email ', function (assert) {
assert.equal(currentURL(), '/s/VzMuyEw_3WqiafcG/my-project');
assert.equal(find('.content .name').text().trim(), 'Test User', 'Profile name displayed');
});
});
});