We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838dd3a commit 5e1529cCopy full SHA for 5e1529c
1 file changed
scripts/e2e/lib/codex-npm-plugin-live/assertions.mjs
@@ -39,7 +39,9 @@ function configure() {
39
cfg.plugins = {
40
...cfg.plugins,
41
enabled: true,
42
- allow: Array.from(new Set([...(cfg.plugins?.allow || []), "codex"])).sort(),
+ allow: Array.from(new Set([...(cfg.plugins?.allow || []), "codex"])).toSorted((left, right) =>
43
+ left.localeCompare(right),
44
+ ),
45
entries: {
46
...cfg.plugins?.entries,
47
codex: {
0 commit comments