Skip to content

Commit

Permalink
WIP Test
Browse files Browse the repository at this point in the history
  • Loading branch information
GregBrimble committed Oct 6, 2024
1 parent 452873a commit bbbd4e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fixtures/external-dispatch-namespace-app/tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ describe("external-dispatch-namespace-app", () => {
expect(dispatcherResponse.headers.get("parameter2")).toMatchInlineSnapshot(
`"p2"`
);
expect(await dispatcherResponse.text()).toMatchInlineSnapshot(
const text = await dispatcherResponse.text();
console.log(text);
expect(text).toEqual('bang');
expect(text).toMatchInlineSnapshot(
`"{\"x-foo\":\"bar\"}"`
);
});
Expand Down

0 comments on commit bbbd4e8

Please sign in to comment.