Skip to content

Commit

Permalink
reenable all components tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jattasNI committed Oct 4, 2024
1 parent c8f23c7 commit f637b8f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import type { AnchorTab } from '../../anchor-tab';
import { waitForUpdatesAsync } from '../../testing/async-helpers';
import { fixture, Fixture } from '../../utilities/tests/fixture';

fdescribe('AnchorTabs', () => {
describe('AnchorTabs', () => {
let element: AnchorTabs;
let connect: () => Promise<void>;
let disconnect: () => Promise<void>;
Expand Down
2 changes: 1 addition & 1 deletion packages/nimble-components/src/dialog/tests/dialog.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function setup<CloseReason = void>(
return await fixture<Dialog<CloseReason>>(viewTemplate);
}

fdescribe('Dialog', () => {
describe('Dialog', () => {
function nativeDialogElement(
nimbleDialogElement: Dialog
): HTMLDialogElement {
Expand Down
2 changes: 1 addition & 1 deletion packages/nimble-components/src/drawer/tests/drawer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function setup<CloseReason = void>(
return await fixture<Drawer<CloseReason>>(viewTemplate);
}

fdescribe('Drawer', () => {
describe('Drawer', () => {
function nativeDialogElement(
nimbleDrawerElement: Drawer | Drawer<string>
): HTMLDialogElement {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function setupWithFooter(): Promise<Fixture<RichTextEditor>> {
);
}

fdescribe('RichTextEditor', () => {
describe('RichTextEditor', () => {
let element: RichTextEditor;
let connect: () => Promise<void>;
let disconnect: () => Promise<void>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function setup(): Promise<Fixture<TableCell<SimpleTableCellRecord>>> {
);
}

fdescribe('TableCell', () => {
describe('TableCell', () => {
let element: TableCell<SimpleTableCellRecord>;
let connect: () => Promise<void>;
let disconnect: () => Promise<void>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function setup(): Promise<Fixture<TableGroupRow>> {
);
}

fdescribe('TableGroupRow', () => {
describe('TableGroupRow', () => {
let element: TableGroupRow;
let connect: () => Promise<void>;
let disconnect: () => Promise<void>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type TableRowSelectionToggleEventHandler = (
evt: CustomEvent<TableRowSelectionToggleEventDetail>
) => void;

fdescribe('TableRow', () => {
describe('TableRow', () => {
describe('standalone', () => {
// prettier-ignore
async function setup(): Promise<Fixture<TableRow<SimpleTableRecord>>> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async function pressEnterOnItem(item: TreeItem): Promise<void> {
await waitForUpdatesAsync();
}

fdescribe('TreeView', () => {
describe('TreeView', () => {
let connect: () => Promise<void>;
let disconnect: () => Promise<void>;
let model: Model;
Expand Down

0 comments on commit f637b8f

Please sign in to comment.