Skip to content

Commit 63a37ae

Browse files
committed
removing .only
1 parent b3c9f83 commit 63a37ae

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

src/visualBuilder/__test__/hover/fields/all-hover.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ describe("When an element is hovered in visual builder mode", () => {
356356
expect(customCursor?.classList.contains("visible")).toBeTruthy();
357357
});
358358

359-
test.only("should have outline and custom cursor on individual instances", async () => {
359+
test("should have outline and custom cursor on individual instances", async () => {
360360
const testStartTime = performance.now();
361361
const dispatchStartTime = performance.now();
362362
firstField.dispatchEvent(mousemoveEvent);

src/visualBuilder/__test__/hover/fields/file.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ describe("When an element is hovered in visual builder mode", () => {
194194
expect(customCursor?.classList.contains("visible")).toBeTruthy();
195195
});
196196

197-
test.only("should have a outline and custom cursor on the url as well", async () => {
197+
test("should have a outline and custom cursor on the url as well", async () => {
198198
const testStartTime = performance.now();
199199
const dispatchStartTime = performance.now();
200200
imageField.dispatchEvent(mousemoveEvent);
@@ -349,7 +349,7 @@ describe("When an element is hovered in visual builder mode", () => {
349349
expect(customCursor?.classList.contains("visible")).toBeTruthy();
350350
});
351351

352-
test.only("should have outline and custom cursor on individual instances", async () => {
352+
test("should have outline and custom cursor on individual instances", async () => {
353353
const testStartTime = performance.now();
354354
const dispatchStartTime = performance.now();
355355
firstFileField.dispatchEvent(mousemoveEvent);

src/visualBuilder/__test__/hover/fields/group.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ describe("When an element is hovered in visual builder mode", () => {
185185
expect(customCursor?.classList.contains("visible")).toBeTruthy();
186186
});
187187

188-
test.only("should have a outline and custom cursor on the nested single line", async () => {
188+
test("should have a outline and custom cursor on the nested single line", async () => {
189189
const testStartTime = performance.now();
190190
const singleLine = document.createElement("p");
191191
singleLine.setAttribute(
@@ -337,7 +337,7 @@ describe("When an element is hovered in visual builder mode", () => {
337337
expect(customCursor?.classList.contains("visible")).toBeTruthy();
338338
});
339339

340-
test.only("should have outline and custom cursor on nested multi line", async () => {
340+
test("should have outline and custom cursor on nested multi line", async () => {
341341
const testStartTime = performance.now();
342342
const dispatchStartTime = performance.now();
343343
firstNestedMultiLine.dispatchEvent(mousemoveEvent);

src/visualBuilder/components/__test__/fieldLabelWrapper.test.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ describe("FieldLabelWrapperComponent", () => {
364364
expect(icon).toBeInTheDocument();
365365
});
366366

367-
test.only("renders with correct class when field is disabled", async () => {
367+
test("renders with correct class when field is disabled", async () => {
368368
const testStartTime = performance.now();
369369
vi.mocked(isFieldDisabled).mockReturnValue({
370370
isDisabled: true,
@@ -407,7 +407,7 @@ describe("FieldLabelWrapperComponent", () => {
407407
console.log(`[TIMING] test - TOTAL: ${(testEndTime - testStartTime).toFixed(2)}ms`);
408408
});
409409

410-
test.only("calls isFieldDisabled with correct arguments", async () => {
410+
test("calls isFieldDisabled with correct arguments", async () => {
411411
const testStartTime = performance.now();
412412
const renderStartTime = performance.now();
413413
const { container } = render(
@@ -484,7 +484,7 @@ describe("FieldLabelWrapperComponent", () => {
484484
// This test only checks a single data attribute that's set directly from props.
485485
// The attribute is already implicitly verified in other tests that check the component renders correctly.
486486

487-
test.only("does not render ContentTypeIcon when loading", async () => {
487+
test("does not render ContentTypeIcon when loading", async () => {
488488
const testStartTime = performance.now();
489489
// Mock the display names to never resolve to simulate loading state
490490
vi.mocked(visualBuilderPostMessage!.send).mockImplementation(
@@ -641,7 +641,7 @@ describe("FieldLabelWrapperComponent", () => {
641641
);
642642
});
643643

644-
test.only("does not apply variant CSS classes when field has no variant", async () => {
644+
test("does not apply variant CSS classes when field has no variant", async () => {
645645
const testStartTime = performance.now();
646646
const renderStartTime = performance.now();
647647
const { container } = render(

src/visualBuilder/utils/__test__/multipleElementAddButton.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ describe("removeAddInstanceButtons", () => {
707707
expect(buttons.length).toBe(0);
708708
});
709709

710-
test.only("should not remove all buttons if forceRemoveAll is false", () => {
710+
test("should not remove all buttons if forceRemoveAll is false", () => {
711711
const testStartTime = performance.now();
712712
const buttonGenStartTime = performance.now();
713713
for (let i = 0; i < 5; i++) {

0 commit comments

Comments
 (0)