fix imports

This commit is contained in:
Cory LaViska
2023-06-13 14:06:37 -04:00
parent 73ad76a2fa
commit ff5b1e8573
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import { elementUpdated, expect, fixture, html, oneEvent } from '@open-wc/testing';
import { registerIconLibrary } from '../../../dist/shoelace.js';
import { registerIconLibrary } from '../../../cdn/shoelace.js';
import type SlErrorEvent from '../../events/sl-error';
import type SlIcon from './icon';
import type SlLoadEvent from '../../events/sl-load';

View File

@@ -1,6 +1,6 @@
// eslint-disable @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment
import { expect, fixture, html, oneEvent, waitUntil } from '@open-wc/testing';
import { getFormControls } from '../../../dist/utilities/form.js';
import { getFormControls } from '../../../cdn/utilities/form.js';
import { runFormControlBaseTests } from '../../internal/test/form-control-base-tests';
import { sendKeys } from '@web/test-runner-commands'; // must come from the same module
import { serialize } from '../../utilities/form';