Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdover committed Aug 9, 2021
1 parent 29fd142 commit 3d74d64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/test_helpers/so_migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,5 @@ const waitForTrue = async ({ predicate }: { predicate: () => Promise<boolean> })
throw new Error(`Predicate never resolved after ${attempt} attempts`);
};

const parseNdjson = (ndjson: string): SavedObject[] => ndjson.split('\n').map((l: string) => JSON.parse(l));
const parseNdjson = (ndjson: string): SavedObject[] =>
ndjson.split('\n').map((l: string) => JSON.parse(l));

0 comments on commit 3d74d64

Please sign in to comment.