@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
7 lines • 443 B
JavaScript
import { InProductTestCollection } from '@atlaskit/in-product-testing';
import { editorIsPresentTestCase } from './test-cases/editor-is-present';
import { editorTypingTestCase } from './test-cases/editor-typing';
export const fundamentalsTestCollection = opts => new InProductTestCollection({
title: '@atlaskit/editor-core -> Editor fundamentals happy path tests',
testCases: [editorIsPresentTestCase(opts), editorTypingTestCase(opts)]
});