github.com/hernad/nomad@v1.6.112/ui/tests/pages/allocations/task/logs.js (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  import { create, isPresent, visitable } from 'ember-cli-page-object';
     7  
     8  export default create({
     9    visit: visitable('/allocations/:id/:name/logs'),
    10    visitParentJob: visitable('/jobs/:id/allocations'),
    11  
    12    hasTaskLog: isPresent('[data-test-task-log]'),
    13    sidebarIsPresent: isPresent('.sidebar.task-context-sidebar'),
    14  });