2020-09-09 08:12:42 +00:00
|
|
|
import Inflector from 'ember-inflector';
|
2020-10-23 16:26:06 +00:00
|
|
|
import helpers from '@ember/test-helpers';
|
2020-09-09 08:12:42 +00:00
|
|
|
import $ from '-jquery';
|
|
|
|
|
2020-10-23 16:26:06 +00:00
|
|
|
import steps from 'consul-ui/tests/steps';
|
|
|
|
import pages from 'consul-ui/tests/pages';
|
|
|
|
|
2020-09-09 08:12:42 +00:00
|
|
|
import api from 'consul-ui/tests/helpers/api';
|
2019-02-21 13:05:05 +00:00
|
|
|
|
2020-10-23 16:26:06 +00:00
|
|
|
export default function({ assert, utils, library }) {
|
2020-09-09 08:12:42 +00:00
|
|
|
return steps({
|
|
|
|
assert,
|
2020-10-23 16:26:06 +00:00
|
|
|
utils,
|
2020-09-09 08:12:42 +00:00
|
|
|
library,
|
|
|
|
pages,
|
2020-10-23 16:26:06 +00:00
|
|
|
helpers,
|
2020-09-09 08:12:42 +00:00
|
|
|
api,
|
|
|
|
Inflector,
|
|
|
|
$,
|
|
|
|
});
|
2019-02-21 13:05:05 +00:00
|
|
|
}
|