Fix various small issues with test suite

This commit is contained in:
Piotr Sarnacki 2016-03-07 10:51:19 +01:00
parent 7292d6f53e
commit ab0a2af471
2 changed files with 6 additions and 8 deletions

View File

@ -37,13 +37,15 @@ export default function() {
return turnIntoV3('repository', repos[0]);
});
this.get('/jobs/:id', function(schema, request) {
return {job: schema.job.find(request.params.id).attrs, commit: schema.commit.all()[0].attrs};
let job = schema.job.find(request.params.id).attrs;
return {job: job, commit: schema.commit.find(job.commit_id).attrs};
});
this.get('/jobs', function(schema, request) {
return {jobs: schema.job.all()};
});
this.get('/builds/:id', function(schema, request) {
return {build: schema.build.find(request.params.id).attrs, commit: schema.commit.all()[0].attrs};
let build = schema.build.find(request.params.id).attrs;
return {build: build, commit: schema.commit.find(build.commit_id).attrs};
});
this.get('/jobs/:id/log', function(schema, request) {
let log = schema.log.find(request.params.id);
@ -55,10 +57,6 @@ export default function() {
}
});
this.get('/v3/repos', function(db, request) {
return turnIntoV3('repository', db.repositories);
});
// These comments are here to help you get started. Feel free to delete them.
/*

View File

@ -1,8 +1,6 @@
import { test, moduleForComponent } from 'ember-qunit';
import Ember from 'ember';
var server = null;
moduleForComponent('travis-status', 'TravisStatusComponent', {
unit: true
});
@ -11,6 +9,7 @@ test('adds incident class to .status-circle', function() {
var component;
expect(3);
component = this.subject();
component.statusPageStatusUrl = "https://status-url.example.com";
component.getStatus = function() {
return new Ember.RSVP.Promise(function(resolve, reject) {
return resolve({
@ -20,6 +19,7 @@ test('adds incident class to .status-circle', function() {
});
});
};
ok(!component.get('status'), 'status is initially not set');
this.render();
equal(component.get('status'), 'major', 'status is updated from the API');