Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfouquet committed Oct 21, 2024
1 parent 2e228ba commit afa2548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/common/__test__/get.location.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('get-location script template', () => {
);
assert.equal(spy.mock.callCount(), 1);

const logOutputDict = JSON.parse(String(spy.mock.calls[0]?.arguments[0]));
const logOutputDict = JSON.parse(String(spy.mock.calls[0]?.arguments[0])) as { time: number };

assert.deepEqual(logOutputDict, {
time: logOutputDict.time,
Expand Down

0 comments on commit afa2548

Please sign in to comment.