Skip to content

Commit 153a1d4

Browse files
Tejas ChopraTejas Chopra
authored andcommitted
test(e2e): assert the dead overrideAuthType key is not written
Both docker e2e harnesses asserted the settings block contained overrideAuthType. The setting does not exist in the modern Copilot Chat extension, so the assertion pinned the defect in place; invert it.
1 parent 45b4c47 commit 153a1d4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

e2e/wrap/run.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -796,8 +796,9 @@ def verify_vscode_wrap(base_env: dict[str, str], project_dir: Path) -> None:
796796
"VS Code wrap should route Copilot Chat generation through Headroom",
797797
)
798798
assert_true(
799-
'"github.copilot.advanced.debug.overrideAuthType": "token"' in configured,
800-
"VS Code wrap should configure token auth",
799+
"overrideAuthType" not in configured,
800+
"VS Code wrap must not write overrideAuthType: no such setting exists in "
801+
"the modern Copilot Chat extension, so VS Code flags it as unknown (#3076)",
801802
)
802803
assert_true(
803804
"synthetic-e2e-token" not in configured, "Settings must not contain credentials"

0 commit comments

Comments
 (0)