Skip to content

Commit

Permalink
Update get-silent-parts.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBurger authored Oct 3, 2024
1 parent 8f8580a commit 8132e2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/renderer/src/test/get-silent-parts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ test('Should be able to get the silences from a video', async () => {
});
expect(silentParts.length).toEqual(1);
expect(silentParts[0].startInSeconds).toBe(0);
expect(silentParts[0].endInSeconds).toBe(1.0149);
expect(silentParts[0].endInSeconds).toBe(1.014896);

expect(audibleParts.length).toEqual(1);
expect(audibleParts[0].startInSeconds).toEqual(1.0149);
expect(audibleParts[0].startInSeconds).toEqual(1.014896);
expect(audibleParts[0].endInSeconds).toEqual(2.789);
});

Expand Down

0 comments on commit 8132e2d

Please sign in to comment.