Skip to content

Commit 358cd9d

Browse files
Uncomment "FIXME" Google Docs nested uls test (#678)
no issue - fixed via recent updates to the section parser
1 parent 2104893 commit 358cd9d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/unit/parsers/dom-test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,7 @@ test('nested html doesn\'t create unneccessary whitespace', (assert) => {
379379
assert.equal(post.sections.objectAt(1).text, 'Two');
380380
});
381381

382-
/*
383-
* FIXME: Google docs nests uls like this
382+
// Google docs nests uls like this
384383
test('lis in nested uls are flattened (when ul is child of ul)', (assert) => {
385384
let element= buildDOM(`
386385
<ul>
@@ -397,4 +396,4 @@ test('lis in nested uls are flattened (when ul is child of ul)', (assert) => {
397396
assert.equal(section.items.objectAt(0).text, 'outer');
398397
assert.equal(section.items.objectAt(1).text, 'inner');
399398
});
400-
*/
399+

0 commit comments

Comments
 (0)