fix(qa-lab): rename codex lifecycle fixtures to match knip ignore pat… · openclaw/openclaw@ebd8b00
RomneyDa
·
2026-05-22
·
via Recent Commits to openclaw:main
File renamed without changes.
| Original file line number | Diff line number | Diff line change |
|---|
@@ -7,15 +7,15 @@ import {
|
7 | 7 | resolveCodexAuthProfile, |
8 | 8 | seedAuthProfiles, |
9 | 9 | snapshotAuthProfiles, |
10 | | -} from "./auth-profile-fixture.js"; |
| 10 | +} from "./auth-profile.fixture.js"; |
11 | 11 | import { |
12 | 12 | CODEX_PLUGIN_CURRENT_VERSION, |
13 | 13 | CODEX_PLUGIN_LIFECYCLE_MESSAGES, |
14 | 14 | createCodexPluginInstallGate, |
15 | 15 | evaluateCodexPluginLifecycle, |
16 | 16 | seedCodexPluginAt, |
17 | 17 | snapshotCodexPluginState, |
18 | | -} from "./codex-plugin-fixture.js"; |
| 18 | +} from "./codex-plugin.fixture.js"; |
19 | 19 | import { createTempDirHarness } from "./temp-dir.test-helper.js"; |
20 | 20 | |
21 | 21 | const tempDirs = createTempDirHarness(); |
|
| Original file line number | Diff line number | Diff line change |
|---|
|
1 | 1 | import fs from "node:fs/promises"; |
2 | 2 | import path from "node:path"; |
3 | | -import { resolveCodexAuthProfile, type QaAuthProfileSnapshot } from "./auth-profile-fixture.js"; |
| 3 | +import { resolveCodexAuthProfile, type QaAuthProfileSnapshot } from "./auth-profile.fixture.js"; |
4 | 4 | |
5 | 5 | export const CODEX_PLUGIN_CURRENT_VERSION = "2026.5.20"; |
6 | 6 | export const CODEX_PLUGIN_HEAD_VERSION = "head"; |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -18,7 +18,7 @@ successCriteria:
|
18 | 18 | docsRefs: |
19 | 19 | - docs/cli/doctor.md |
20 | 20 | codeRefs: |
21 | | - - extensions/qa-lab/src/auth-profile-fixture.ts |
| 21 | + - extensions/qa-lab/src/auth-profile.fixture.ts |
22 | 22 | - extensions/qa-lab/src/codex-plugin-lifecycle.test.ts |
23 | 23 | execution: |
24 | 24 | kind: flow |
@@ -34,7 +34,7 @@ steps:
|
34 | 34 | actions: |
35 | 35 | - set: auth |
36 | 36 | value: |
37 | | -expr: await qaImport("./auth-profile-fixture.js") |
| 37 | +expr: await qaImport("./auth-profile.fixture.js") |
38 | 38 | - set: tmpRoot |
39 | 39 | value: |
40 | 40 | expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-auth-")) |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -19,8 +19,8 @@ successCriteria:
|
19 | 19 | docsRefs: |
20 | 20 | - docs/cli/doctor.md |
21 | 21 | codeRefs: |
22 | | - - extensions/qa-lab/src/auth-profile-fixture.ts |
23 | | - - extensions/qa-lab/src/codex-plugin-fixture.ts |
| 22 | + - extensions/qa-lab/src/auth-profile.fixture.ts |
| 23 | + - extensions/qa-lab/src/codex-plugin.fixture.ts |
24 | 24 | - extensions/qa-lab/src/codex-plugin-lifecycle.test.ts |
25 | 25 | execution: |
26 | 26 | kind: flow |
@@ -39,10 +39,10 @@ steps:
|
39 | 39 | actions: |
40 | 40 | - set: auth |
41 | 41 | value: |
42 | | -expr: await qaImport("./auth-profile-fixture.js") |
| 42 | +expr: await qaImport("./auth-profile.fixture.js") |
43 | 43 | - set: plugin |
44 | 44 | value: |
45 | | -expr: await qaImport("./codex-plugin-fixture.js") |
| 45 | +expr: await qaImport("./codex-plugin.fixture.js") |
46 | 46 | - forEach: |
47 | 47 | items: |
48 | 48 | ref: config.matrixCells |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -20,8 +20,8 @@ docsRefs:
|
20 | 20 | - docs/cli/plugins.md |
21 | 21 | - docs/plugins/install-overrides.md |
22 | 22 | codeRefs: |
23 | | - - extensions/qa-lab/src/codex-plugin-fixture.ts |
24 | | - - extensions/qa-lab/src/auth-profile-fixture.ts |
| 23 | + - extensions/qa-lab/src/codex-plugin.fixture.ts |
| 24 | + - extensions/qa-lab/src/auth-profile.fixture.ts |
25 | 25 | - extensions/qa-lab/src/codex-plugin-lifecycle.test.ts |
26 | 26 | execution: |
27 | 27 | kind: flow |
@@ -36,10 +36,10 @@ steps:
|
36 | 36 | actions: |
37 | 37 | - set: auth |
38 | 38 | value: |
39 | | -expr: await qaImport("./auth-profile-fixture.js") |
| 39 | +expr: await qaImport("./auth-profile.fixture.js") |
40 | 40 | - set: plugin |
41 | 41 | value: |
42 | | -expr: await qaImport("./codex-plugin-fixture.js") |
| 42 | +expr: await qaImport("./codex-plugin.fixture.js") |
43 | 43 | - set: tmpRoot |
44 | 44 | value: |
45 | 45 | expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-cold-")) |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -18,7 +18,7 @@ successCriteria:
|
18 | 18 | docsRefs: |
19 | 19 | - docs/cli/plugins.md |
20 | 20 | codeRefs: |
21 | | - - extensions/qa-lab/src/codex-plugin-fixture.ts |
| 21 | + - extensions/qa-lab/src/codex-plugin.fixture.ts |
22 | 22 | - extensions/qa-lab/src/codex-plugin-lifecycle.test.ts |
23 | 23 | execution: |
24 | 24 | kind: flow |
@@ -34,7 +34,7 @@ steps:
|
34 | 34 | actions: |
35 | 35 | - set: plugin |
36 | 36 | value: |
37 | | -expr: await qaImport("./codex-plugin-fixture.js") |
| 37 | +expr: await qaImport("./codex-plugin.fixture.js") |
38 | 38 | - set: gate |
39 | 39 | value: |
40 | 40 | expr: plugin.createCodexPluginInstallGate() |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -17,7 +17,7 @@ docsRefs:
|
17 | 17 | - docs/cli/plugins.md |
18 | 18 | - docs/cli/update.md |
19 | 19 | codeRefs: |
20 | | - - extensions/qa-lab/src/codex-plugin-fixture.ts |
| 20 | + - extensions/qa-lab/src/codex-plugin.fixture.ts |
21 | 21 | - extensions/qa-lab/src/codex-plugin-lifecycle.test.ts |
22 | 22 | execution: |
23 | 23 | kind: flow |
@@ -35,10 +35,10 @@ steps:
|
35 | 35 | actions: |
36 | 36 | - set: auth |
37 | 37 | value: |
38 | | -expr: await qaImport("./auth-profile-fixture.js") |
| 38 | +expr: await qaImport("./auth-profile.fixture.js") |
39 | 39 | - set: plugin |
40 | 40 | value: |
41 | | -expr: await qaImport("./codex-plugin-fixture.js") |
| 41 | +expr: await qaImport("./codex-plugin.fixture.js") |
42 | 42 | - set: tmpRoot |
43 | 43 | value: |
44 | 44 | expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-new-")) |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -17,7 +17,7 @@ docsRefs:
|
17 | 17 | - docs/cli/plugins.md |
18 | 18 | - docs/cli/update.md |
19 | 19 | codeRefs: |
20 | | - - extensions/qa-lab/src/codex-plugin-fixture.ts |
| 20 | + - extensions/qa-lab/src/codex-plugin.fixture.ts |
21 | 21 | - extensions/qa-lab/src/codex-plugin-lifecycle.test.ts |
22 | 22 | execution: |
23 | 23 | kind: flow |
@@ -35,10 +35,10 @@ steps:
|
35 | 35 | actions: |
36 | 36 | - set: auth |
37 | 37 | value: |
38 | | -expr: await qaImport("./auth-profile-fixture.js") |
| 38 | +expr: await qaImport("./auth-profile.fixture.js") |
39 | 39 | - set: plugin |
40 | 40 | value: |
41 | | -expr: await qaImport("./codex-plugin-fixture.js") |
| 41 | +expr: await qaImport("./codex-plugin.fixture.js") |
42 | 42 | - set: tmpRoot |
43 | 43 | value: |
44 | 44 | expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-old-")) |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。