generate test files

This commit is contained in:
Lisa P 2016-03-09 16:30:27 +01:00 committed by lislis
parent 67b15de301
commit e8b27dec6b
3 changed files with 27 additions and 0 deletions

View File

@ -56,6 +56,9 @@ export default function() {
return new Mirage.Response(404, {}, {});
}
});
this.get('/dashboard', function(schema, request) {
// repos and orgs?
});
// These comments are here to help you get started. Feel free to delete them.

View File

@ -0,0 +1,13 @@
import { test } from 'qunit';
import moduleForAcceptance from 'travis/tests/helpers/module-for-acceptance';
moduleForAcceptance('Acceptance | dashboard view test');
test('visiting /dashboard-view-test', function(assert) {
visit('/dashboard');
andThen(function() {
assert.equal(currentURL(), '/dashboard');
});
});

11
tests/pages/dashboard.js Normal file
View File

@ -0,0 +1,11 @@
import PageObject from 'travis/tests/page-object';
let {
visitable
} = PageObject;
export default PageObject.create({
});