@@ -3,9 +3,9 @@ import { expect } from 'chai';
3
3
import { spy } from 'sinon' ;
4
4
import { describeConformance , act , createRenderer , fireEvent } from 'test/utils' ;
5
5
import FormControl , { formControlClasses as classes } from '@mui/material-next/FormControl' ;
6
- // TODO: replace with material-next/OutlinedInput
6
+ // TODO v6 : replace with material-next/FilledInput
7
7
import InputBase from '@mui/material-next/InputBase' ;
8
- // TODO: replace with material-next/Select
8
+ // TODO v6 : replace with material-next/Select
9
9
import Select from '@mui/material/Select' ;
10
10
import useFormControl from './useFormControl' ;
11
11
@@ -177,7 +177,7 @@ describe('<FormControl />', () => {
177
177
{ flag ? (
178
178
< InputBase />
179
179
) : (
180
- // TODO: use material-next/Select
180
+ // TODO v6 : use material-next/Select
181
181
< Select native >
182
182
< option value = "" > empty</ option >
183
183
</ Select >
@@ -196,14 +196,14 @@ describe('<FormControl />', () => {
196
196
} ) ;
197
197
} ) ;
198
198
199
- // TODO: needs Outlined| FilledInput + FormControl integrated
199
+ // TODO v6 : needs FilledInput + FormControl integrated
200
200
// eslint-disable-next-line mocha/no-skipped-tests
201
201
describe . skip ( 'input' , ( ) => {
202
202
it ( 'should be filled when a value is set' , ( ) => {
203
203
const readContext = spy ( ) ;
204
204
render (
205
205
< FormControl >
206
- { /* TODO: use material-next/OutlinedInput */ }
206
+ { /* TODO v6 : use material-next/FilledInput */ }
207
207
< InputBase value = "bar" />
208
208
< TestComponent contextCallback = { readContext } />
209
209
</ FormControl > ,
@@ -215,7 +215,7 @@ describe('<FormControl />', () => {
215
215
const readContext = spy ( ) ;
216
216
render (
217
217
< FormControl >
218
- { /* TODO: use material-next/OutlinedInput */ }
218
+ { /* TODO v6 : use material-next/FilledInput */ }
219
219
< InputBase inputProps = { { value : 'bar' } } />
220
220
< TestComponent contextCallback = { readContext } />
221
221
</ FormControl > ,
@@ -227,7 +227,7 @@ describe('<FormControl />', () => {
227
227
const readContext = spy ( ) ;
228
228
render (
229
229
< FormControl >
230
- { /* TODO: use material-next/OutlinedInput */ }
230
+ { /* TODO v6 : use material-next/FilledInput */ }
231
231
< InputBase defaultValue = "bar" />
232
232
< TestComponent contextCallback = { readContext } />
233
233
</ FormControl > ,
@@ -239,7 +239,7 @@ describe('<FormControl />', () => {
239
239
const readContext = spy ( ) ;
240
240
render (
241
241
< FormControl >
242
- { /* TODO: use material-next/OutlinedInput */ }
242
+ { /* TODO v6 : use material-next/FilledInput */ }
243
243
< InputBase endAdornment = { < div /> } />
244
244
< TestComponent contextCallback = { readContext } />
245
245
</ FormControl > ,
@@ -251,7 +251,7 @@ describe('<FormControl />', () => {
251
251
const readContext = spy ( ) ;
252
252
render (
253
253
< FormControl >
254
- { /* TODO: use material-next/OutlinedInput */ }
254
+ { /* TODO v6 : use material-next/FilledInput */ }
255
255
< InputBase startAdornment = { < div /> } />
256
256
< TestComponent contextCallback = { readContext } />
257
257
</ FormControl > ,
@@ -260,7 +260,7 @@ describe('<FormControl />', () => {
260
260
} ) ;
261
261
} ) ;
262
262
263
- // TODO: needs material-next/Select + FormControl integrated
263
+ // TODO v6 : needs material-next/Select + FormControl integrated
264
264
// eslint-disable-next-line mocha/no-skipped-tests
265
265
describe . skip ( 'select' , ( ) => {
266
266
it ( 'should not be adorned without a startAdornment' , ( ) => {
0 commit comments