Skip to content

Commit 5e1529c

Browse files
committed
fix(tests): satisfy codex plugin smoke lint
1 parent 838dd3a commit 5e1529c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/e2e/lib/codex-npm-plugin-live/assertions.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ function configure() {
3939
cfg.plugins = {
4040
...cfg.plugins,
4141
enabled: true,
42-
allow: Array.from(new Set([...(cfg.plugins?.allow || []), "codex"])).sort(),
42+
allow: Array.from(new Set([...(cfg.plugins?.allow || []), "codex"])).toSorted((left, right) =>
43+
left.localeCompare(right),
44+
),
4345
entries: {
4446
...cfg.plugins?.entries,
4547
codex: {

0 commit comments

Comments
 (0)