56 lines
2.1 KiB
TypeScript
Raw Normal View History

/**
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2021-12-14 19:25:07 -08:00
import React from 'react';
import { expect, test } from '../test/componentTest';
import { AutoChip, Chip } from './chip';
test.use({ webpack: require.resolve('../webpack.config.js') });
2021-12-14 19:25:07 -08:00
test.use({ viewport: { width: 500, height: 500 } });
test('expand collapse', async ({ render, capture }) => {
2021-12-14 19:25:07 -08:00
const component = await render(<AutoChip header='title'>
Chip body
</AutoChip>);
await expect(component.locator('text=Chip body')).toBeVisible();
await capture(component, 'expanded');
await component.locator('text=Title').click();
await expect(component.locator('text=Chip body')).not.toBeVisible();
await capture(component, 'collapsed');
await component.locator('text=Title').click();
await expect(component.locator('text=Chip body')).toBeVisible();
});
test('render long title', async ({ render, capture }) => {
const title = 'Extremely long title. '.repeat(10);
2021-12-14 19:25:07 -08:00
const component = await render(<AutoChip header={title}>
Chip body
</AutoChip>);
await expect(component).toContainText('Extremely long title.');
await expect(component.locator('text=Extremely long title.')).toHaveAttribute('title', title);
await capture(component, 'long-title');
});
test('setExpanded is called', async ({ render, capture }) => {
const expandedValues: boolean[] = [];
2021-12-14 19:25:07 -08:00
const component = await render(<Chip header='Title'
setExpanded={(expanded: boolean) => expandedValues.push(expanded)}>
</Chip>);
await component.locator('text=Title').click();
expect(expandedValues).toEqual([true]);
});