Procházet zdrojové kódy

Finish updating test imports

Steven Silvester před 8 roky
rodič
revize
b8e196e0ff

+ 1 - 1
test/src/common/dialog.spec.ts

@@ -17,7 +17,7 @@ import {
 
 import {
   showDialog, okButton
-} from '../../../lib/dialog';
+} from '../../../lib/common/dialog';
 
 import {
   acceptDialog, dismissDialog

+ 1 - 1
test/src/common/sanitizer.spec.ts

@@ -5,7 +5,7 @@ import expect = require('expect.js');
 
 import {
   defaultSanitizer
-} from '../../../lib/sanitizer';
+} from '../../../lib/common/sanitizer';
 
 
 describe('defaultSanitizer', () => {

+ 4 - 4
test/src/renderers/renderers.spec.ts

@@ -7,15 +7,15 @@ import {
   Widget
 } from 'phosphor/lib/ui/widget';
 
+import {
+  defaultSanitizer
+} from '../../../lib/common/sanitizer';
+
 import {
   LatexRenderer, PDFRenderer, JavascriptRenderer,
   SVGRenderer, MarkdownRenderer, TextRenderer, HTMLRenderer, ImageRenderer
 } from '../../../lib/renderers';
 
-import {
-  defaultSanitizer
-} from '../../../lib/sanitizer';
-
 
 const EXPECTED_MD = `<h1>Title first level</h1>\n<h2>Title second Level</h2>\n<h3>Title third level</h3>\n<h4>h4</h4>\n<h5>h5</h5>\n<h6>h6</h6>\n<h1>h1</h1>\n<h2>h2</h2>\n<h3>h3</h3>\n<h4>h4</h4>\n<h5>h6</h5>\n<p>This is just a sample paragraph\nYou can look at different level of nested unorderd list ljbakjn arsvlasc asc asc awsc asc ascd ascd ascd asdc asc</p>\n<ul>\n<li>level 1<ul>\n<li>level 2</li>\n<li>level 2</li>\n<li>level 2<ul>\n<li>level 3</li>\n<li>level 3<ul>\n<li>level 4<ul>\n<li>level 5<ul>\n<li>level 6</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li>level 2</li>\n</ul>\n</li>\n<li>level 1</li>\n<li>level 1</li>\n<li>level 1\nOrdered list</li>\n<li>level 1<ol>\n<li>level 1</li>\n<li>level 1<ol>\n<li>level 1</li>\n<li>level 1</li>\n<li>level 1<ol>\n<li>level 1</li>\n<li>level 1<ol>\n<li>level 1</li>\n<li>level 1</li>\n<li>level 1</li>\n</ol>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n<li>level 1</li>\n<li>level 1\nsome Horizontal line</li>\n</ul>\n<hr>\n<h2>and another one</h2>\n<p>Colons can be used to align columns.</p>\n<table>\n<thead>\n<tr>\n<th>Tables</th>\n<th>Are</th>\n<th>Cool</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>col 3 is</td>\n<td>right-aligned</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>col 2 is</td>\n<td>centered</td>\n<td>12</td>\n</tr>\n<tr>\n<td>zebra stripes</td>\n<td>are neat</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n<p>There must be at least 3 dashes separating each header cell.\nThe outer pipes (|) are optional, and you don\'t need to make the\nraw Markdown line up prettily. You can also use inline Markdown.</p>\n`;