Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/precommit_hook.js -…
Browse files Browse the repository at this point in the history
…-ref HEAD~1..HEAD --fix'
  • Loading branch information
kibanamachine committed Aug 23, 2022
1 parent 49b1c8f commit ba61e24
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const log = getService('log');

async function* instantiateDeleter(session: { delete: () => any; }) {
async function* instantiateDeleter(session: { delete: () => any }) {
yield session.delete();
}

const list = async (po: { goTo: () => any; getList: () => any; }) => {
const list = async (po: { goTo: () => any; getList: () => any }) => {
await po.goTo();
return po.getList();
};
Expand Down

0 comments on commit ba61e24

Please sign in to comment.