Skip to content

Commit fc92170

Browse files
authored
chore: Upgrade tsconfigs (#1419)
1 parent d87a49a commit fc92170

File tree

10 files changed

+18
-33
lines changed

10 files changed

+18
-33
lines changed

pages/app/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ function App() {
2424
urlParams: { density, motionDisabled },
2525
} = useContext(AppContext);
2626

27-
const isAppLayout =
28-
pageId !== undefined && (pageId.indexOf('app-layout') > -1 || pageId.indexOf('content-layout') > -1);
27+
const isAppLayout = pageId !== undefined && (pageId.includes('app-layout') || pageId.includes('content-layout'));
2928
// AppLayout already contains <main>
3029
// Also, AppLayout pages should resemble the ConsoleNav 2.0 styles
3130
const ContentTag = isAppLayout ? 'div' : 'main';

pages/cards/selection.page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ interface Item {
1313
const ariaLabels: CardsProps<Item>['ariaLabels'] = {
1414
selectionGroupLabel: 'group label',
1515
itemSelectionLabel: ({ selectedItems }, item) =>
16-
`${item.text} is ${selectedItems.indexOf(item) < 0 ? 'not ' : ''}selected`,
16+
`${item.text} is ${!selectedItems.includes(item) ? 'not ' : ''}selected`,
1717
};
1818

1919
function createSimpleItems(count: number) {

pages/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": ["ES2015", "DOM"],
3+
"lib": ["ES2020", "DOM"],
44
"target": "ES2015",
55
"declaration": false,
66
"declarationMap": false,

src/__a11y__/run-a11y-tests.ts

+9-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import useBrowser from '@cloudscape-design/browser-test-tools/use-browser';
66
import { findAllPages } from '../__integ__/utils';
77
import A11yPageObject from './a11y-page-object';
88

9-
type Theme = string;
9+
type Theme = 'default' | 'visual-refresh';
1010
type Mode = 'light' | 'dark';
1111

1212
function setupTest(url: string, testFn: (page: A11yPageObject) => Promise<void>) {
@@ -19,21 +19,19 @@ function setupTest(url: string, testFn: (page: A11yPageObject) => Promise<void>)
1919
}
2020

2121
function urlFormatter(inputUrl: string, theme: Theme, mode: Mode) {
22-
return `#/${mode}/${inputUrl}?visualRefresh=${theme.indexOf('visual-refresh') !== -1 ? 'true' : 'false'}`;
22+
return `#/${mode}/${inputUrl}?visualRefresh=${theme === 'visual-refresh' ? 'true' : 'false'}`;
2323
}
2424

2525
export default function runA11yTests(theme: Theme, mode: Mode, skip: string[] = []) {
2626
describe(`A11y checks for ${mode} ${theme}`, () => {
2727
findAllPages().forEach(inputUrl => {
28-
const testFunction =
29-
[
30-
...skip,
31-
'theming/tokens',
32-
// this page intentionally has issues to test the helper
33-
'undefined-texts',
34-
].indexOf(inputUrl) === -1
35-
? test
36-
: test.skip;
28+
const skipPages = [
29+
...skip,
30+
'theming/tokens',
31+
// this page intentionally has issues to test the helper
32+
'undefined-texts',
33+
];
34+
const testFunction = skipPages.includes(inputUrl) ? test.skip : test;
3735
const url = urlFormatter(inputUrl, theme, mode);
3836
testFunction(
3937
url,

src/__tests__/form-field-controls-integration.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ formFieldControlComponents.forEach(({ componentName, findNativeElement }) => {
8282
}
8383

8484
describe(`${componentName}`, () => {
85-
const isGroupComponent = ['radio-group', 'tiles'].indexOf(componentName) !== -1;
85+
const isGroupComponent = ['radio-group', 'tiles'].includes(componentName);
8686
if (!isGroupComponent) {
8787
describe('controlId', () => {
8888
test('applies controlId from FormField when controlId is not set on itself', () => {

src/multiselect/__integ__/page-objects/multiselect-page.ts

-11
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
// SPDX-License-Identifier: Apache-2.0
3-
import { strict as assert } from 'assert';
43
import { MultiselectWrapper } from '../../../../lib/components/test-utils/selectors';
54
import SelectPageObject from '../../../select/__integ__/page-objects/select-page';
65
import optionStyles from '../../../../lib/components/internal/components/option/styles.selectors.js';
7-
import selectableItemStyles from '../../../../lib/components/internal/components/selectable-item/styles.selectors.js';
86

97
export default class MultiselectPageObject extends SelectPageObject<MultiselectWrapper> {
108
getOptionInGroup(groupNumber: number, optionNumber: number) {
@@ -15,15 +13,6 @@ export default class MultiselectPageObject extends SelectPageObject<MultiselectW
1513
await this.click(this.getOptionInGroup(groupNumber, optionNumber));
1614
}
1715

18-
async assertOptionSelected(groupNumber: number, optionNumber: number, isSelected: boolean) {
19-
const className = await this.getElementAttribute(this.getOptionInGroup(groupNumber, optionNumber), 'class');
20-
assert.equal(
21-
className.indexOf(selectableItemStyles.selected),
22-
isSelected,
23-
`Option should be ${isSelected ? '' : 'not '} selected`
24-
);
25-
}
26-
2716
clickTokenToggle() {
2817
return this.click(this.wrapper.findTokenToggle().toSelector());
2918
}

src/test-utils/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"incremental": true,
55
"module": "CommonJS",
66
"target": "ES2015",
7-
"lib": ["ES2015", "DOM"],
7+
"lib": ["ES2020", "DOM"],
88
"declaration": true,
99
"allowSyntheticDefaultImports": true,
1010
"outDir": "../../lib/components/test-utils",

tsconfig.integ.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
2+
"extends": "@tsconfig/node16/tsconfig.json",
23
"compilerOptions": {
3-
"module": "commonjs",
4-
"target": "es2017",
5-
"lib": ["es2017", "dom"],
4+
"lib": ["es2020", "dom"],
65
"types": ["jest"],
76
"noEmit": true,
87
"strict": true,

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": ["ES2015", "ES2017.Intl", "ES2018.Intl", "ES2020.Intl", "DOM"],
3+
"lib": ["ES2020", "DOM"],
44
"target": "ES2015",
55
"types": [],
66
"module": "ES2015",

tsconfig.unit.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es2018",
4-
"lib": ["es2018", "dom"],
4+
"lib": ["es2020", "dom"],
55
"types": ["node", "jest", "@testing-library/jest-dom"],
66
"moduleResolution": "node",
77
"downlevelIteration": true,

0 commit comments

Comments
 (0)