open-nomad/ui/tests/pages/components/notification.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
259 B
JavaScript
Raw Normal View History

import { isPresent, clickable, text } from 'ember-cli-page-object';
2021-12-28 14:45:20 +00:00
export default (scope) => ({
scope,
isPresent: isPresent(),
dismiss: clickable('[data-test-dismiss]'),
title: text('[data-test-title]'),
message: text('[data-test-message]'),
});