github.com/hernad/nomad@v1.6.112/ui/tests/pages/components/notification.js (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 import { isPresent, clickable, text } from 'ember-cli-page-object'; 7 8 export default (scope) => ({ 9 scope, 10 11 isPresent: isPresent(), 12 dismiss: clickable('[data-test-dismiss]'), 13 title: text('[data-test-title]'), 14 message: text('[data-test-message]'), 15 });