From 4bee4e595201602a44c54db11f1560896c1196fe Mon Sep 17 00:00:00 2001 From: Manoj Prabhakar Paidiparthy Date: Wed, 27 May 2026 19:33:00 -0700 Subject: [PATCH] fix(wrapper): update smoke test to assert protocol 0.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #17 bumped PROTOCOL_VERSION_REQUIRED_BY_WRAPPER from 0.1.0 to 0.2.0 in wrappers/typescript/src/index.ts but missed the smoke test assertion. The publish-wrapper.yml workflow on the wrapper-v0.4.0 tag failed at the test stage (run #26550926394), preventing npm publish. This fixes the assertion to expect 0.2.0, unblocking the publish of amplifier-agent-ts@0.4.0 to npm. Local verification: 60/60 wrapper tests pass. 🤖 Generated with [Amplifier](https://github.com/microsoft/amplifier) Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com> --- wrappers/typescript/test/smoke.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/typescript/test/smoke.test.ts b/wrappers/typescript/test/smoke.test.ts index 8a259e6c..37c44132 100644 --- a/wrappers/typescript/test/smoke.test.ts +++ b/wrappers/typescript/test/smoke.test.ts @@ -3,6 +3,6 @@ import { PROTOCOL_VERSION_REQUIRED_BY_WRAPPER } from "../src/index.js"; describe("smoke", () => { it("exports the correct protocol version constant", () => { - expect(PROTOCOL_VERSION_REQUIRED_BY_WRAPPER).toBe("0.1.0"); + expect(PROTOCOL_VERSION_REQUIRED_BY_WRAPPER).toBe("0.2.0"); }); });