Skip to content

Commit

Permalink
fix an issue with a prior rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuellr committed Sep 30, 2020
1 parent 95fcc5a commit c366d4b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
*/

import { FtrProviderContext } from '../../../common/ftr_provider_context';
import { buildUp, tearDown } from '..';

// eslint-disable-next-line import/no-default-export
export default function actionsTests({ loadTestFile }: FtrProviderContext) {
export default function actionsTests({ loadTestFile, getService }: FtrProviderContext) {
describe('Actions', () => {
before(async () => buildUp(getService));
after(async () => tearDown(getService));

loadTestFile(require.resolve('./create'));
loadTestFile(require.resolve('./delete'));
loadTestFile(require.resolve('./get_all'));
Expand Down

0 comments on commit c366d4b

Please sign in to comment.