Skip to content

Commit

Permalink
Fix lint errors.
Browse files Browse the repository at this point in the history
Signed-off-by: Albert Kyei <akyei908@gmail.com>
  • Loading branch information
wakek committed Nov 4, 2024
1 parent 9e3bda2 commit 71aed03
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions rust/perspective-viewer/test/js/column_settings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ test.describe("Plugin Styles", () => {

// expect -ve color input on color range is present and has valid default value
const getFgColorNeg = async () => {
return view.columnSettingsSidebar.styleTab.container.locator("#fg-color-neg");
return view.columnSettingsSidebar.styleTab.container.locator(
"#fg-color-neg"
);
};
let fgColorNeg = await getFgColorNeg();

Expand All @@ -264,7 +266,7 @@ test.describe("Plugin Styles", () => {
await secondCol.editBtn.waitFor();
await secondCol.editBtn.click();

// expect -ve color input on color range is present
// expect -ve color input on color range is present
fgColorNeg = await getFgColorNeg();

expect(fgColorNeg).toBeVisible();
Expand All @@ -277,7 +279,7 @@ test.describe("Plugin Styles", () => {
await firstCol.editBtn.waitFor();
await firstCol.editBtn.click();

// expect -ve color input on color range is present
// expect -ve color input on color range is present
fgColorNeg = await getFgColorNeg();

expect(fgColorNeg).toBeVisible();
Expand Down

0 comments on commit 71aed03

Please sign in to comment.