Skip to content

Commit 8a10451

Browse files
authored
build: add exception for missing MDC test (#22188)
Adds an exception for one missing test until #22187 is merged.
1 parent 97f1ccc commit 8a10451

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

scripts/check-mdc-tests-config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ export const config = {
140140
'element is inside an ngIf'
141141
],
142142
'mdc-select': [
143+
// TODO(crisbeto): remove this exception once #22187 lands.
144+
'should float the label on focus if it has a placeholder',
145+
143146
// These tests are excluded, because they're verifying the functionality that positions
144147
// the select panel over the trigger which isn't supported in the MDC select.
145148
'should set the width of the overlay based on a larger trigger width',

src/material-experimental/mdc-chips/chip-input.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {MatChipTextControl} from './chip-text-control';
2525

2626
/** Represents an input event on a `matChipInput`. */
2727
export interface MatChipInputEvent {
28-
/**
28+
/**
2929
* The native `<input>` element that the event is being fired for.
3030
* @deprecated Use `MatChipInputEvent#chipInput.inputElement` instead.
3131
* @breaking-change 13.0.0 This property will be removed.
@@ -34,9 +34,9 @@ export interface MatChipInputEvent {
3434

3535
/** The value of the input. */
3636
value: string;
37-
38-
/**
39-
* Reference to the chip input that emitted the event.
37+
38+
/**
39+
* Reference to the chip input that emitted the event.
4040
* @breaking-change 13.0.0 This property will be made required.
4141
*/
4242
chipInput?: MatChipInput;

src/material/chips/chip-input.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {MatChipTextControl} from './chip-text-control';
2525

2626
/** Represents an input event on a `matChipInput`. */
2727
export interface MatChipInputEvent {
28-
/**
28+
/**
2929
* The native `<input>` element that the event is being fired for.
3030
* @deprecated Use `MatChipInputEvent#chipInput.inputElement` instead.
3131
* @breaking-change 13.0.0 This property will be removed.
@@ -34,9 +34,9 @@ export interface MatChipInputEvent {
3434

3535
/** The value of the input. */
3636
value: string;
37-
38-
/**
39-
* Reference to the chip input that emitted the event.
37+
38+
/**
39+
* Reference to the chip input that emitted the event.
4040
* @breaking-change 13.0.0 This property will be made required.
4141
*/
4242
chipInput?: MatChipInput;

0 commit comments

Comments
 (0)