Skip to content

Commit

Permalink
Try harder.
Browse files Browse the repository at this point in the history
  • Loading branch information
taeold committed Nov 1, 2023
1 parent 2de68a1 commit 2276740
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/bin-test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,7 @@ describe("functions.yaml", () => {
try {
const res = await fetch(`http://localhost:${port}/__/functions.yaml`);
const text = await res.text();
let parsed: any;
parsed = yaml.load(text);
const parsed = yaml.load(text);
expect(parsed).to.be.deep.equal(tc.expected);
} catch (err) {
throw new Error(`Failed to parse functions.yaml: ${err}`);
Expand Down

0 comments on commit 2276740

Please sign in to comment.