Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyutaotao committed Dec 10, 2024
1 parent a7554a6 commit 930cf51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/cli/tests/__snapshots__/printer.test.ts.snap
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`printer > action brief text 1`] = `"aiAction: search for w..."`;
exports[`printer > action brief text 1`] = `"aiAction: search for weather"`;

exports[`printer > action brief text 2`] = `"sleep: 1000"`;

exports[`printer > action brief text 3`] = `"aiWaitFor: wait for som..."`;
exports[`printer > action brief text 3`] = `"aiWaitFor: wait for something"`;
2 changes: 1 addition & 1 deletion packages/cli/tests/yaml.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { assert, describe, expect, test, vi } from 'vitest';
const runYaml = async (yamlString: string) => {
const script = loadYamlScript(yamlString);
const player = new ScriptPlayer(script);
await player.play();
await player.run();
assert(
player.status === 'done',
player.errorInSetup?.message || 'unknown error',
Expand Down

0 comments on commit 930cf51

Please sign in to comment.