b5b4a979f9
Most of this was ported over from the existing job run acceptance tests
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
import { create, visitable } from 'ember-cli-page-object';
|
|
|
|
import jobEditor from 'nomad-ui/tests/pages/components/job-editor';
|
|
|
|
export default create({
|
|
visit: visitable('/jobs/run'),
|
|
editor: jobEditor(),
|
|
});
|