File tree Expand file tree Collapse file tree 4 files changed +68
-0
lines changed
Expand file tree Collapse file tree 4 files changed +68
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * @license
3+ * Copyright 2023 Google LLC
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ // import 'jasmine'; (google3-only)
8+
9+ import { createTokenTests } from '../testing/tokens.js' ;
10+
11+ import { MdFilledField } from './filled-field.js' ;
12+
13+ describe ( '<md-filled-field>' , ( ) => {
14+ describe ( '.styles' , ( ) => {
15+ createTokenTests ( MdFilledField . styles ) ;
16+ } ) ;
17+ } ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * @license
3+ * Copyright 2023 Google LLC
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ // import 'jasmine'; (google3-only)
8+
9+ import { createTokenTests } from '../testing/tokens.js' ;
10+
11+ import { MdOutlinedField } from './outlined-field.js' ;
12+
13+ describe ( '<md-outlined-field>' , ( ) => {
14+ describe ( '.styles' , ( ) => {
15+ createTokenTests ( MdOutlinedField . styles ) ;
16+ } ) ;
17+ } ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * @license
3+ * Copyright 2023 Google LLC
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ // import 'jasmine'; (google3-only)
8+
9+ import { createTokenTests } from '../testing/tokens.js' ;
10+
11+ import { MdFilledTextField } from './filled-text-field.js' ;
12+
13+ describe ( '<md-filled-field>' , ( ) => {
14+ describe ( '.styles' , ( ) => {
15+ createTokenTests ( MdFilledTextField . styles ) ;
16+ } ) ;
17+ } ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * @license
3+ * Copyright 2023 Google LLC
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ // import 'jasmine'; (google3-only)
8+
9+ import { createTokenTests } from '../testing/tokens.js' ;
10+
11+ import { MdOutlinedTextField } from './outlined-text-field.js' ;
12+
13+ describe ( '<md-outlined-field>' , ( ) => {
14+ describe ( '.styles' , ( ) => {
15+ createTokenTests ( MdOutlinedTextField . styles ) ;
16+ } ) ;
17+ } ) ;
You can’t perform that action at this time.
0 commit comments