fix(test): update builtin skills count from 3 to 4 (#1126)

* fix(test): update builtin skills count from 3 to 4 (dev-browser added)

* chore(ci): add block-master-pr workflow

---------

Co-authored-by: justsisyphus <justsisyphus@users.noreply.github.com>
This commit is contained in:
justsisyphus
2026-01-26 11:29:28 +09:00
committed by GitHub
parent aead4aebd2
commit 892b245779
2 changed files with 23 additions and 4 deletions
+3 -3
View File
@@ -75,7 +75,7 @@ describe("createBuiltinSkills", () => {
}
})
test("returns exactly 3 skills regardless of provider", () => {
test("returns exactly 4 skills regardless of provider", () => {
// #given
// #when
@@ -83,7 +83,7 @@ describe("createBuiltinSkills", () => {
const agentBrowserSkills = createBuiltinSkills({ browserProvider: "agent-browser" })
// #then
expect(defaultSkills).toHaveLength(3)
expect(agentBrowserSkills).toHaveLength(3)
expect(defaultSkills).toHaveLength(4)
expect(agentBrowserSkills).toHaveLength(4)
})
})