Development
Development
Section titled “Development”npm run dev # build in watch modenpm test # unit tests (vitest)npm run lint # oxlintnpm run fmt:check # oxfmt (use `npm run fmt` to auto-fix)npm run build # type check + emit dist/End-to-end tests
Section titled “End-to-end tests”E2E suites under e2e/ exercise real platform APIs and are kept off the default npm test run.
npm run test:e2e # all platformsnpm run test:e2e:slack # Slack onlySlack E2E requires SLACK_QA_USER_TOKEN, SLACK_QA_CHANNEL_ID, and SLACK_QA_BOT_USER_ID against a dedicated test workspace. See slack-qa-test-plan.md for setup.