From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/domhandler/test/cases/01-basic.json | 41 --------------- .../domhandler/test/cases/02-single_tag_1.json | 21 -------- .../domhandler/test/cases/03-single_tag_2.json | 21 -------- .../test/cases/04-unescaped_in_script.json | 27 ---------- .../domhandler/test/cases/05-tags_in_comment.json | 18 ------- .../test/cases/06-comment_in_script.json | 18 ------- .../test/cases/07-unescaped_in_style.json | 20 -------- .../test/cases/08-extra_spaces_in_tag.json | 20 -------- .../domhandler/test/cases/09-unquoted_attrib.json | 20 -------- .../test/cases/10-singular_attribute.json | 15 ------ .../test/cases/11-text_outside_tags.json | 20 -------- .../domhandler/test/cases/12-text_only.json | 11 ---- .../domhandler/test/cases/13-comment_in_text.json | 19 ------- .../test/cases/14-comment_in_text_in_script.json | 18 ------- .../domhandler/test/cases/15-non-verbose.json | 22 -------- .../test/cases/16-normalize_whitespace.json | 47 ----------------- .../domhandler/test/cases/17-xml_namespace.json | 18 ------- .../test/cases/18-enforce_empty_tags.json | 16 ------ .../test/cases/19-ignore_empty_tags.json | 20 -------- .../test/cases/20-template_script_tags.json | 20 -------- .../test/cases/21-conditional_comments.json | 15 ------ .../domhandler/test/cases/22-lowercase_tags.json | 41 --------------- node_modules/domhandler/test/tests.js | 59 ---------------------- 23 files changed, 547 deletions(-) delete mode 100644 node_modules/domhandler/test/cases/01-basic.json delete mode 100644 node_modules/domhandler/test/cases/02-single_tag_1.json delete mode 100644 node_modules/domhandler/test/cases/03-single_tag_2.json delete mode 100644 node_modules/domhandler/test/cases/04-unescaped_in_script.json delete mode 100644 node_modules/domhandler/test/cases/05-tags_in_comment.json delete mode 100644 node_modules/domhandler/test/cases/06-comment_in_script.json delete mode 100644 node_modules/domhandler/test/cases/07-unescaped_in_style.json delete mode 100644 node_modules/domhandler/test/cases/08-extra_spaces_in_tag.json delete mode 100644 node_modules/domhandler/test/cases/09-unquoted_attrib.json delete mode 100644 node_modules/domhandler/test/cases/10-singular_attribute.json delete mode 100644 node_modules/domhandler/test/cases/11-text_outside_tags.json delete mode 100644 node_modules/domhandler/test/cases/12-text_only.json delete mode 100644 node_modules/domhandler/test/cases/13-comment_in_text.json delete mode 100644 node_modules/domhandler/test/cases/14-comment_in_text_in_script.json delete mode 100644 node_modules/domhandler/test/cases/15-non-verbose.json delete mode 100644 node_modules/domhandler/test/cases/16-normalize_whitespace.json delete mode 100644 node_modules/domhandler/test/cases/17-xml_namespace.json delete mode 100644 node_modules/domhandler/test/cases/18-enforce_empty_tags.json delete mode 100644 node_modules/domhandler/test/cases/19-ignore_empty_tags.json delete mode 100644 node_modules/domhandler/test/cases/20-template_script_tags.json delete mode 100644 node_modules/domhandler/test/cases/21-conditional_comments.json delete mode 100644 node_modules/domhandler/test/cases/22-lowercase_tags.json delete mode 100644 node_modules/domhandler/test/tests.js (limited to 'node_modules/domhandler/test') diff --git a/node_modules/domhandler/test/cases/01-basic.json b/node_modules/domhandler/test/cases/01-basic.json deleted file mode 100644 index e7952ec9e..000000000 --- a/node_modules/domhandler/test/cases/01-basic.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "Basic test", - "options": {}, - "html": "The TitleHello world", - "expected": [ - { - "name": "!doctype", - "data": "!DOCTYPE html", - "type": "directive" - }, - { - "type": "tag", - "name": "html", - "attribs": {}, - "children": [ - { - "type": "tag", - "name": "title", - "attribs": {}, - "children": [ - { - "data": "The Title", - "type": "text" - } - ] - }, - { - "type": "tag", - "name": "body", - "attribs": {}, - "children": [ - { - "data": "Hello world", - "type": "text" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/02-single_tag_1.json b/node_modules/domhandler/test/cases/02-single_tag_1.json deleted file mode 100644 index 51ff84577..000000000 --- a/node_modules/domhandler/test/cases/02-single_tag_1.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "Single Tag 1", - "options": {}, - "html": "
text
", - "expected": [ - { - "type": "tag", - "name": "br", - "attribs": {} - }, - { - "data": "text", - "type": "text" - }, - { - "type": "tag", - "name": "br", - "attribs": {} - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/03-single_tag_2.json b/node_modules/domhandler/test/cases/03-single_tag_2.json deleted file mode 100644 index 1c56dc9d9..000000000 --- a/node_modules/domhandler/test/cases/03-single_tag_2.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "Single Tag 2", - "options": {}, - "html": "
text
", - "expected": [ - { - "type": "tag", - "name": "br", - "attribs": {} - }, - { - "data": "text", - "type": "text" - }, - { - "type": "tag", - "name": "br", - "attribs": {} - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/04-unescaped_in_script.json b/node_modules/domhandler/test/cases/04-unescaped_in_script.json deleted file mode 100644 index f31f5fad6..000000000 --- a/node_modules/domhandler/test/cases/04-unescaped_in_script.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "Unescaped chars in script", - "options": {}, - "html": "", - "expected": [ - { - "type": "tag", - "name": "head", - "attribs": {}, - "children": [ - { - "type": "script", - "name": "script", - "attribs": { - "language": "Javascript" - }, - "children": [ - { - "data": "var foo = \"\"; alert(2 > foo); var baz = 10 << 2; var zip = 10 >> 1; var yap = \"<<>>>><<\";", - "type": "text" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/05-tags_in_comment.json b/node_modules/domhandler/test/cases/05-tags_in_comment.json deleted file mode 100644 index 2d22d9e1d..000000000 --- a/node_modules/domhandler/test/cases/05-tags_in_comment.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "Special char in comment", - "options": {}, - "html": "", - "expected": [ - { - "type": "tag", - "name": "head", - "attribs": {}, - "children": [ - { - "data": " commented out tags Test", - "type": "comment" - } - ] - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/06-comment_in_script.json b/node_modules/domhandler/test/cases/06-comment_in_script.json deleted file mode 100644 index 9a21cdabf..000000000 --- a/node_modules/domhandler/test/cases/06-comment_in_script.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "Script source in comment", - "options": {}, - "html": "", - "expected": [ - { - "type": "script", - "name": "script", - "attribs": {}, - "children": [ - { - "data": "", - "type": "text" - } - ] - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/07-unescaped_in_style.json b/node_modules/domhandler/test/cases/07-unescaped_in_style.json deleted file mode 100644 index 77438fdc1..000000000 --- a/node_modules/domhandler/test/cases/07-unescaped_in_style.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "Unescaped chars in style", - "options": {}, - "html": "", - "expected": [ - { - "type": "style", - "name": "style", - "attribs": { - "type": "text/css" - }, - "children": [ - { - "data": "\n body > p\n\t{ font-weight: bold; }", - "type": "text" - } - ] - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/08-extra_spaces_in_tag.json b/node_modules/domhandler/test/cases/08-extra_spaces_in_tag.json deleted file mode 100644 index 5c2492e22..000000000 --- a/node_modules/domhandler/test/cases/08-extra_spaces_in_tag.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "Extra spaces in tag", - "options": {}, - "html": "the text", - "expected": [ - { - "type": "tag", - "name": "font", - "attribs": { - "size": "14" - }, - "children": [ - { - "data": "the text", - "type": "text" - } - ] - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/09-unquoted_attrib.json b/node_modules/domhandler/test/cases/09-unquoted_attrib.json deleted file mode 100644 index 543cceeed..000000000 --- a/node_modules/domhandler/test/cases/09-unquoted_attrib.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "Unquoted attributes", - "options": {}, - "html": "the text", - "expected": [ - { - "type": "tag", - "name": "font", - "attribs": { - "size": "14" - }, - "children": [ - { - "data": "the text", - "type": "text" - } - ] - } - ] -} \ No newline at end of file diff --git a/node_modules/domhandler/test/cases/10-singular_attribute.json b/node_modules/domhandler/test/cases/10-singular_attribute.json deleted file mode 100644 index 544636e49..000000000 --- a/node_modules/domhandler/test/cases/10-singular_attribute.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "Singular attribute", - "options": {}, - "html": "