diff --git a/packages/readabilityjs/test/index.html b/packages/readabilityjs/test/index.html
new file mode 100644
index 000000000..dd62bc2d6
--- /dev/null
+++ b/packages/readabilityjs/test/index.html
@@ -0,0 +1,448 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/readabilityjs/test/view.html b/packages/readabilityjs/test/view.html
deleted file mode 100644
index 6575cc16a..000000000
--- a/packages/readabilityjs/test/view.html
+++ /dev/null
@@ -1,1114 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/readabilityjs/test/view.py b/packages/readabilityjs/test/view.py
index c8bd7bf2a..ffd718727 100644
--- a/packages/readabilityjs/test/view.py
+++ b/packages/readabilityjs/test/view.py
@@ -6,7 +6,8 @@ from os.path import isfile, join
testdirs = [f for f in listdir(
"test-pages") if not isfile(join("test-pages", f))]
-print("""
+file = open("index.html", "w")
+file.write("""
@@ -24,7 +25,7 @@ print("""
""")
for testdir in testdirs:
- print(f"""
+ file.write(f"""
{testdir}
[source]
[readability]
@@ -33,11 +34,11 @@ for testdir in testdirs:
""")
-print("""
+file.write("""
- |
@@ -47,3 +48,5 @@ print("""
""")
+
+file.close()