blob: 403567cf969c2ed3c131df29b1a654d490d5698d [file]
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');
});
});
});