Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
philcockfield committed Nov 21, 2024
1 parent e27e668 commit fe27090
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/sys/std/src/m.Jsr/-.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ describe('Jsr', () => {
const res = await promise;
expect(res.status).to.eql(499);
expect(res.data).to.eql(undefined);
expect(res.error?.message).to.include('Fetch operation disposed of before completing (499)');

expect(res.error?.message).to.include('HTTP:GET request failed');
expect(res.error?.message).to.include('https://jsr.io/@sys/std/meta.json');
expect(res.error?.cause?.message).to.include('disposed of before completing (499)');
});
});

Expand Down

0 comments on commit fe27090

Please sign in to comment.