We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29fd142 commit 3d74d64Copy full SHA for 3d74d64
src/core/test_helpers/so_migrations.ts
@@ -187,4 +187,5 @@ const waitForTrue = async ({ predicate }: { predicate: () => Promise<boolean> })
187
throw new Error(`Predicate never resolved after ${attempt} attempts`);
188
};
189
190
-const parseNdjson = (ndjson: string): SavedObject[] => ndjson.split('\n').map((l: string) => JSON.parse(l));
+const parseNdjson = (ndjson: string): SavedObject[] =>
191
+ ndjson.split('\n').map((l: string) => JSON.parse(l));
0 commit comments