Skip to content

Commit

Permalink
[tb/LEMS-2761/matcher-split] Put left info before right info in test …
Browse files Browse the repository at this point in the history
…data
  • Loading branch information
Myranae committed Feb 7, 2025
1 parent 6c336b2 commit 5a259bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ describe("getMatcherPublicWidgetOptions", () => {
labels: ["**Claims**", "**Evidence**"],
padding: true,
orderMatters: true,
right: ["Stars", "Earth", "Life", "Rapid", "Milky Way"],
left: ["Fuel", "Plate", "Hydrogen", "Average", "Billion"],
right: ["Stars", "Earth", "Life", "Rapid", "Milky Way"],
};

// Act
Expand All @@ -45,8 +45,8 @@ describe("getMatcherPublicWidgetOptions", () => {
labels: ["**Claims**", "**Evidence**"],
padding: true,
orderMatters: true,
right: ["Milky Way", "Stars", "Life", "Earth", "Rapid"],
left: ["Billion", "Fuel", "Hydrogen", "Plate", "Average"],
right: ["Milky Way", "Stars", "Life", "Earth", "Rapid"],
});
expect(publicWidgetOptions.right).not.toEqual(options.right);
expect(publicWidgetOptions.left).not.toEqual(options.left);
Expand Down

0 comments on commit 5a259bd

Please sign in to comment.