/** * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md. */ import { testDataProcessor as test } from 'ckeditor5-markdown-gfm/tests/_utils/utils'; describe( 'GFMDataProcessor', () => { describe( 'Strikethrough', () => { it( 'should process strikethrough text', () => { test( '~~deleted~~', '

deleted

' ); } ); it( 'should process strikethrough inside text', () => { test( 'This is ~~deleted content~~.', '

This is deleted content.

' ); } ); } ); } );