15872cc2d4
* Unknown status for allocations accounted for * Canary string removed * Test cleanup * Generate unknown in mirage * aacidentally oovervoowled * Update ui/app/components/allocation-status-bar.js Co-authored-by: Derek Strickland <1111455+DerekStrickland@users.noreply.github.com> * Disconnected state on job status in client * Renaming Disconnected to Unknown in the job-status-in-client * Unknown accounted for on job rows filtering and testsfix * Adding lostAllocs as a computed dependency * Unknown client status within acceptance test * Swatches updated and PR comments addressed * Unknown and disconnected added to test fixtures Co-authored-by: Derek Strickland <1111455+DerekStrickland@users.noreply.github.com>
36 lines
906 B
JavaScript
36 lines
906 B
JavaScript
import { Factory, trait } from 'ember-cli-mirage';
|
|
|
|
import faker from 'nomad-ui/mirage/faker';
|
|
|
|
export default Factory.extend({
|
|
// Hidden property used to compute the Summary hash
|
|
groupNames: [],
|
|
|
|
namespace: null,
|
|
|
|
withSummary: trait({
|
|
Summary: function () {
|
|
return this.groupNames.reduce((summary, group) => {
|
|
summary[group] = {
|
|
Queued: faker.random.number(10),
|
|
Complete: faker.random.number(10),
|
|
Failed: faker.random.number(10),
|
|
Running: faker.random.number(10),
|
|
Starting: faker.random.number(10),
|
|
Lost: faker.random.number(10),
|
|
Unknown: faker.random.number(10),
|
|
};
|
|
return summary;
|
|
}, {});
|
|
},
|
|
}),
|
|
|
|
withChildren: trait({
|
|
Children: () => ({
|
|
Pending: faker.random.number(10),
|
|
Running: faker.random.number(10),
|
|
Dead: faker.random.number(10),
|
|
}),
|
|
}),
|
|
});
|