Skip to content

Commit

Permalink
Update Main.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
naveedkhan8067 authored Dec 2, 2024
1 parent ff83cc7 commit fed4522
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/hello-world/src/test/Main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
});
});

0 comments on commit fed4522

Please sign in to comment.