// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 describe('Textarea', () => { it('with value', async () => { await page.goto( 'http://host.docker.internal:9009/iframe.html?id=ui-components-form-textarea--textarea&knob-value=some test value' ); const image = await page.screenshot(); expect(image).toMatchImageSnapshot(); }); });