From fed4522d83f3e10ef509017d5c73b2039ba42c25 Mon Sep 17 00:00:00 2001 From: naveedkhan8067 <38525837+naveedkhan8067@users.noreply.github.com> Date: Mon, 2 Dec 2024 19:59:19 +0100 Subject: [PATCH] Update Main.test.ts --- components/hello-world/src/test/Main.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/hello-world/src/test/Main.test.ts b/components/hello-world/src/test/Main.test.ts index 656372c..ed819fb 100644 --- a/components/hello-world/src/test/Main.test.ts +++ b/components/hello-world/src/test/Main.test.ts @@ -10,14 +10,14 @@ describe("Hello-World Component Tests", async () => { #if "VARIANT" == "MAC" expect(variantType).to.equal("Mac"); - expect(msgString).to.equal("*** Mac platform --> Hello-World ***"); + expect(msgString).to.equal("*** Mac platform --> Hello-World Naveed***"); #elif "VARIANT" == "LINUX" expect(variantType).to.equal("Linux"); - expect(msgString).to.equal("*** Linux platform --> Hello-World ***"); + expect(msgString).to.equal("*** Linux platform --> Hello-World Naveed***"); #else expect(variantType).to.equal("Windows"); - expect(msgString).to.equal("*** Windows platform --> Hello-World ***"); + expect(msgString).to.equal("*** Windows platform --> Hello-World Naveed***"); #endif DisplayMsg(msgString); }); - }); \ No newline at end of file + });