blob: 264bd5e2b9f631f193897b667582f6ca00f6db86 [file] [log] [blame]
import { expect } from 'chai';
import {
loadCachedTestBed,
takeScreenshot,
TestBed,
} from '../../../puppeteer-tests/util';
describe('expandable-textarea-sk', () => {
let testBed: TestBed;
before(async () => {
testBed = await loadCachedTestBed();
});
beforeEach(async () => {
await testBed.page.goto(testBed.baseUrl);
await testBed.page.setViewport({ width: 400, height: 500 });
});
it('should render the demo page', async () => {
// Smoke test.
expect(await testBed.page.$$('expandable-textarea-sk')).to.have.length(1);
});
describe('screenshots', () => {
it('shows the closed view', async () => {
await takeScreenshot(
testBed.page,
'infra-sk',
'expandable-textarea-sk_closed'
);
});
it('shows the expanded view', async () => {
await testBed.page.click('button');
await takeScreenshot(
testBed.page,
'infra-sk',
'expandable-textarea-sk_open'
);
});
});
});