Skip to content

Commit

Permalink
remove unrelated import tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfranco committed Jan 28, 2025
1 parent ca7ee62 commit 96d5d60
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-strict-ignore
import { E2EPage, newE2EPage } from "@arcgis/lumina-compiler/puppeteerTesting";
import { newE2EPage, E2EPage } from "@arcgis/lumina-compiler/puppeteerTesting";
import { describe, expect, it } from "vitest";
import { accessible, defaults, focusable, hidden, reflects, renders, t9n, themed } from "../../tests/commonTests";
import { accessible, defaults, focusable, hidden, reflects, renders, themed, t9n } from "../../tests/commonTests";
import { html } from "../../../support/formatting";
import { CSS } from "./resources";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { E2EPage, newE2EPage } from "@arcgis/lumina-compiler/puppeteerTesting";
import { beforeEach, describe, expect, it } from "vitest";
import { accessible, defaults, hidden, reflects, renders } from "../../tests/commonTests";
import { newE2EPage, E2EPage } from "@arcgis/lumina-compiler/puppeteerTesting";
import { describe, expect, it, beforeEach } from "vitest";
import { accessible, defaults, reflects, renders, hidden } from "../../tests/commonTests";
import { CSS } from "./resources";

describe("calcite-color-picker-swatch", () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @ts-strict-ignore
import { newE2EPage } from "@arcgis/lumina-compiler/puppeteerTesting";
import { beforeEach, describe, expect, it } from "vitest";
import { describe, expect, it, beforeEach } from "vitest";
import { accessible, hidden, renders } from "../../tests/commonTests";
import { StatusIconDefaults } from "./interfaces";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-strict-ignore
import { newE2EPage } from "@arcgis/lumina-compiler/puppeteerTesting";
import { describe, expect, it } from "vitest";
import { accessible, defaults, hidden, reflects, renders } from "../../tests/commonTests";
import { accessible, defaults, reflects, renders, hidden } from "../../tests/commonTests";
import type { Option } from "./option";

describe("calcite-option", () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe } from "vitest";
import { defaults, hidden, renders, slots } from "../../tests/commonTests";
import { hidden, renders, slots, defaults } from "../../tests/commonTests";
import { SLOTS } from "./resources";

describe("calcite-stack", () => {
Expand Down

0 comments on commit 96d5d60

Please sign in to comment.