惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园 - 【当耐特】
月光博客
月光博客
Vercel News
Vercel News
D
Docker
I
InfoQ
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
有赞技术团队
有赞技术团队
雷峰网
雷峰网
博客园 - 聂微东
小众软件
小众软件
Y
Y Combinator Blog
腾讯CDC
L
LangChain Blog
The GitHub Blog
The GitHub Blog
宝玉的分享
宝玉的分享
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: tighten script empty array assertions · openclaw/op...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -140,6 +140,6 @@ describe("syncPluginVersions", () => {

140140
141141

const checkSummary = syncPluginVersions(rootDir, { write: false });

142142
143-

expect(checkSummary.changelogged).toEqual([]);

143+

expect(checkSummary.changelogged).toStrictEqual([]);

144144

});

145145

});

Original file line numberDiff line numberDiff line change

@@ -888,10 +888,10 @@ describe("test-projects args", () => {

888888

});

889889

expect(

890890

resolveChangedTargetArgs(["--changed=origin/main"], process.cwd(), () => changedPaths),

891-

).toEqual([]);

891+

).toStrictEqual([]);

892892

expect(

893893

buildVitestRunPlans(["--changed=origin/main"], process.cwd(), () => changedPaths),

894-

).toEqual([]);

894+

).toStrictEqual([]);

895895

});

896896
897897

it("keeps core test-only changes on their owning test lane", () => {

Original file line numberDiff line numberDiff line change

@@ -60,7 +60,7 @@ describe("bundled plugin assets", () => {

6060

await withPluginAssetFixture(async (rootDir) => {

6161

await expect(

6262

readBundledPluginAssetHooks({ phase: "copy", plugins: ["missing"], rootDir }),

63-

).resolves.toEqual([]);

63+

).resolves.toStrictEqual([]);

6464

});

6565

});

6666
Original file line numberDiff line numberDiff line change

@@ -70,8 +70,8 @@ describe("check-cli-bootstrap-imports", () => {

7070

writeFixture(root, "dist/light.js", `import path from "node:path";\nvoid path;\n`);

7171

writeGatewayRunChunk(root);

7272
73-

expect(collectCliBootstrapExternalImportErrors({ rootDir: root })).toEqual([]);

74-

expect(collectGatewayRunChunkBudgetErrors({ rootDir: root })).toEqual([]);

73+

expect(collectCliBootstrapExternalImportErrors({ rootDir: root })).toStrictEqual([]);

74+

expect(collectGatewayRunChunkBudgetErrors({ rootDir: root })).toStrictEqual([]);

7575

});

7676
7777

it("reports external packages in the static bootstrap graph", () => {

Original file line numberDiff line numberDiff line change

@@ -24,7 +24,7 @@ describe("check-dynamic-import-warts", () => {

2424

return (await import("./runtime.js")).createRuntime();

2525

}

2626

`;

27-

expect(findDynamicImportAdvisories(source)).toEqual([]);

27+

expect(findDynamicImportAdvisories(source)).toStrictEqual([]);

2828

});

2929
3030

it("flags repeated direct dynamic imports", () => {

@@ -52,7 +52,7 @@ describe("check-dynamic-import-warts", () => {

5252

return runtimePromise;

5353

}

5454

`;

55-

expect(findDynamicImportAdvisories(source)).toEqual([]);

55+

expect(findDynamicImportAdvisories(source)).toStrictEqual([]);

5656

});

5757
5858

it("flags direct dynamic imports inside execute paths", () => {

@@ -87,6 +87,6 @@ describe("check-dynamic-import-warts", () => {

8787

};

8888

}

8989

`;

90-

expect(findDynamicImportAdvisories(source)).toEqual([]);

90+

expect(findDynamicImportAdvisories(source)).toStrictEqual([]);

9191

});

9292

});

Original file line numberDiff line numberDiff line change

@@ -39,7 +39,7 @@ describe("check-no-conflict-markers", () => {

3939

findConflictMarkerLines(

4040

["Example:", " <<<<<<< HEAD", "const text = '======= not a conflict';"].join("\n"),

4141

),

42-

).toEqual([]);

42+

).toStrictEqual([]);

4343

});

4444
4545

it("scans text files and skips binary files", () => {

Original file line numberDiff line numberDiff line change

@@ -34,15 +34,15 @@ describe("check-no-random-messaging-tmp", () => {

3434

// os.tmpdir()

3535

const text = "tmpdir()";

3636

`;

37-

expect(findMessagingTmpdirCallLines(source)).toEqual([]);

37+

expect(findMessagingTmpdirCallLines(source)).toStrictEqual([]);

3838

});

3939
4040

it("ignores tmpdir symbols that are not imported from node:os", () => {

4141

const source = `

4242

const tmpdir = () => "/tmp";

4343

const dir = tmpdir();

4444

`;

45-

expect(findMessagingTmpdirCallLines(source)).toEqual([]);

45+

expect(findMessagingTmpdirCallLines(source)).toStrictEqual([]);

4646

});

4747
4848

it("guards src/media against host tmpdir usage", () => {

Original file line numberDiff line numberDiff line change

@@ -25,7 +25,7 @@ describe("check-no-raw-window-open", () => {

2525

// window.open("https://example.com")

2626

const text = "window.open('https://example.com')";

2727

`;

28-

expect(findRawWindowOpenLines(source)).toEqual([]);

28+

expect(findRawWindowOpenLines(source)).toStrictEqual([]);

2929

});

3030
3131

it("handles parenthesized and asserted window references", () => {

Original file line numberDiff line numberDiff line change

@@ -13,7 +13,7 @@ const validRule = {

1313
1414

describe("check-opengrep-rule-metadata", () => {

1515

it("accepts GHSA-backed rules with durable source metadata", () => {

16-

expect(validateRuleMetadata([validRule])).toEqual([]);

16+

expect(validateRuleMetadata([validRule])).toStrictEqual([]);

1717

});

1818
1919

it("requires source metadata on every compiled rule", () => {

@@ -46,7 +46,7 @@ describe("check-opengrep-rule-metadata", () => {

4646

},

4747

},

4848

]),

49-

).toEqual([]);

49+

).toStrictEqual([]);

5050

});

5151
5252

it("keeps the source id, rule id, and GHSA advisory URL consistent", () => {

Original file line numberDiff line numberDiff line change

@@ -42,7 +42,7 @@ describe("check-runtime-sidecar-loaders", () => {

4242

"src/tasks/task-registry.ts",

4343

new Set(["src/tasks/task-registry-control.runtime.ts"]),

4444

),

45-

).toEqual([]);

45+

).toStrictEqual([]);

4646

});

4747
4848

it("resolves candidate arrays used by source/build fallback loops", () => {

@@ -81,7 +81,7 @@ describe("check-runtime-sidecar-loaders", () => {

8181
8282

expect(

8383

findRuntimeSidecarLoaderViolations(source, "src/tasks/task-registry.ts", new Set()),

84-

).toEqual([]);

84+

).toStrictEqual([]);

8585

});

8686
8787

it("collects explicit tsdown entry sources", () => {