Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Oct 25, 2024
1 parent ee21886 commit 6b4cc94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ describe('Testing create_file_mass', () => {

const { status, mass } = response;
console.log(mass);
expect(mass).toBe(103.7539631347172);
expect(status).toBe('completed');
expect(mass).toBe(103.7539631347172);
});
it("shouldn't throw when using a client", async () => {
const response = await file.create_file_mass({
Expand All @@ -31,7 +31,7 @@ describe('Testing create_file_mass', () => {
if ('error_code' in response) throw 'error' + JSON.stringify(response);

const { status, mass } = response;
expect(mass).toBe(103.7539631347172);
expect(status).toBe('completed');
expect(mass).toBe(103.7539631347172);
});
});

0 comments on commit 6b4cc94

Please sign in to comment.