Skip to content

Commit

Permalink
fix: test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dosco committed Oct 7, 2024
1 parent 45ea50e commit 91b15c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ax/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"build:module": "tsc -p tsconfig.build.module.json",
"build:cjs": "tsc -p tsconfig.build.cjs.json",
"watch:build": "tsc -p tsconfig.build.module.json -w",
"test:unit": "ava --verbose",
"test": "ava --verbose",
"tsx": "node --env-file=.env --import=tsx",
"release": "release-it",
"publish": "npm run build && cd build && npm publish",
Expand Down
2 changes: 1 addition & 1 deletion src/ax/prompts/prompts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test('generate prompt', async (t) => {
);
gen.setExamples(examples);

const res = await gen.forward({ someText });
const res = await gen.forward({ someText }, { stream: false });

t.deepEqual(res, {
reason: 'Blah blah blah',
Expand Down

0 comments on commit 91b15c1

Please sign in to comment.