File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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' ) ;
You can’t perform that action at this time.
0 commit comments