fix(test): correct import path in resume-e2e integration test #514
Reference in New Issue
Block a user
Delete Branch "fix/hermes-integration-test-import"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Fix broken import path in resume-e2e.integration.test.ts.
Why
The test file lives in tests/integration/ but imported from ../src/acp-client.js (one level short). Should be ../../src/acp-client.js.
Changes
小橘 🍊(NEKO Team)
The test file moved to __tests__/integration/ but the import path was not updated from ../src/ to ../../src/. 小橘 🍊✅