2023-03-14 14:18:55 +01:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2020-09-09 09:12:42 +01:00
|
|
|
import Inflector from 'ember-inflector';
|
2020-10-23 17:26:06 +01:00
|
|
|
import helpers from '@ember/test-helpers';
|
2020-09-09 09:12:42 +01:00
|
|
|
import $ from '-jquery';
|
|
|
|
|
2020-10-23 17:26:06 +01:00
|
|
|
import steps from 'consul-ui/tests/steps';
|
|
|
|
import pages from 'consul-ui/tests/pages';
|
|
|
|
|
2020-09-09 09:12:42 +01:00
|
|
|
import api from 'consul-ui/tests/helpers/api';
|
2019-02-21 13:05:05 +00:00
|
|
|
|
2022-09-15 10:43:17 +02:00
|
|
|
export default function ({ assert, utils, library }) {
|
2020-09-09 09:12:42 +01:00
|
|
|
return steps({
|
|
|
|
assert,
|
2020-10-23 17:26:06 +01:00
|
|
|
utils,
|
2020-09-09 09:12:42 +01:00
|
|
|
library,
|
|
|
|
pages,
|
2020-10-23 17:26:06 +01:00
|
|
|
helpers,
|
2020-09-09 09:12:42 +01:00
|
|
|
api,
|
|
|
|
Inflector,
|
|
|
|
$,
|
|
|
|
});
|
2019-02-21 13:05:05 +00:00
|
|
|
}
|