File size: 490 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
/**
* @group gutenberg
*/
import {
BlockFlow,
BlogPostsBlockFlow,
PostCarouselBlockFlow,
TimelineBlockFlow,
DataHelper,
} from '@automattic/calypso-e2e';
import { createBlockTests } from './shared/block-smoke-testing';
const blockFlows: BlockFlow[] = [
new BlogPostsBlockFlow(),
new PostCarouselBlockFlow(),
new TimelineBlockFlow( {
firstEntry: DataHelper.getRandomPhrase(),
secondEntry: DataHelper.getRandomPhrase(),
} ),
];
createBlockTests( 'Blocks: ETK', blockFlows );
|