mirror of
https://github.com/kemko/nomad.git
synced 2026-01-14 06:15:41 +03:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
import { create, isPresent, visitable } from 'ember-cli-page-object';
|
|
|
|
export default create({
|
|
visit: visitable('/allocations/:id/:name/logs'),
|
|
|
|
hasTaskLog: isPresent('[data-test-task-log]'),
|
|
});
|