1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-04 21:15:24 +02:00

[WIP] Upgrading EmberJS codemods

This commit is contained in:
Harvey Kandola 2018-12-08 15:39:31 +00:00
parent 4b68529090
commit 5cfbf07e55
8 changed files with 376 additions and 425 deletions

View file

@ -1,3 +1,4 @@
import { currentURL, visit } from '@ember/test-helpers';
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
@ -9,19 +10,19 @@
//
// https://documize.com
import { test } from 'qunit';
import moduleForAcceptance from 'documize/tests/helpers/module-for-acceptance';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
moduleForAcceptance('Acceptance | Anon access disabled');
module('Acceptance | Anon access disabled', function(hooks) {
setupApplicationTest(hooks);
test('visiting / when not authenticated and with { allowAnonymousAccess: false } takes user to login', function (assert) {
server.create('meta', { allowAnonymousAccess: false });
visit('/');
test('visiting / when not authenticated and with { allowAnonymousAccess: false } takes user to login', async function(assert) {
server.create('meta', { allowAnonymousAccess: false });
await visit('/');
andThen(function () {
assert.equal(currentURL(), '/auth/login');
findWithAssert('#authEmail');
findWithAssert('#authPassword');
findWithAssert('button');
});
assert.equal(currentURL(), '/auth/login');
findWithAssert('#authEmail');
findWithAssert('#authPassword');
findWithAssert('button');
});
});