Skip to content

Commit 701ebcf

Browse files
ericbladeCopilot
andauthored
Update tests/base.spec.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 16c2a2c commit 701ebcf

1 file changed

Lines changed: 0 additions & 22 deletions

File tree

tests/base.spec.ts

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -282,28 +282,6 @@ test.describe('component parameters', () => {
282282
});
283283
});
284284

285-
test.describe('input type', () => {
286-
test('can set input type to email', async ({ page }) => {
287-
const inputTypeField = page.locator('[name=inputType]');
288-
const applyBtn = page.locator('[name=apply]');
289-
290-
await inputTypeField.fill('email');
291-
await applyBtn.click();
292-
293-
const currencyInput = page.locator('#currency-input');
294-
const type = await currencyInput.getAttribute('type');
295-
296-
expect(type).toBe('email');
297-
});
298-
299-
test('can set input type back to text', async ({ page }) => {
300-
const currencyInput = page.locator('#currency-input');
301-
const type = await currencyInput.getAttribute('type');
302-
303-
expect(type).toBe('text');
304-
});
305-
});
306-
307285
test.describe('basic input and formatting', () => {
308286
test('typing numbers formats correctly', async ({ page }) => {
309287
const currencyInput = page.locator('#currency-input');

0 commit comments

Comments
 (0)