Skip to content

Commit 478bf7c

Browse files
committed
fix: update CI workflow test to match per-crate cargo test steps
1 parent 395923e commit 478bf7c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

apps/api/src/deploy.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ describe('ci.yml', () => {
131131
test('has Rust check job with clippy', () => {
132132
expect(workflow).toContain('check-rust')
133133
expect(workflow).toContain('cargo check --workspace')
134-
expect(workflow).toContain('cargo test --workspace')
134+
expect(workflow).toContain('cargo test -p sandchest-agent')
135+
expect(workflow).toContain('cargo test -p sandchest-node')
135136
expect(workflow).toContain('cargo clippy --workspace -- -D warnings')
136137
})
137138

0 commit comments

Comments
 (0)