Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
lolopinto committed May 31, 2023
1 parent 1a7eb32 commit b82daa2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ts/src/core/ent_errors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,6 @@ function commonTests() {
const loader = getEntLoader(new IDViewer(1), invalidFieldOpts);
const rows = await loader.loadMany([1]);
expect(rows.length).toBe(1);
// when it fails,SqliteError
console.debug(rows);
expect(rows[0]).toBeInstanceOf(Error);
expect((rows[0] as Error).message).toBe(getExpectedErrorMessageOnRead());
});
Expand All @@ -217,8 +215,6 @@ function commonTests() {
);
const rows = await loader.loadMany([1]);
expect(rows.length).toBe(1);
// when it fails,ErrorWrapper
console.debug(rows);
expect(rows[0]).toBeInstanceOf(Error);
expect((rows[0] as Error).message).toBe(getExpectedErrorMessageOnRead());
});
Expand Down

0 comments on commit b82daa2

Please sign in to comment.