From e94478c21b30af37dd9cc86c7f6a3b1e38c5f2b6 Mon Sep 17 00:00:00 2001 From: meri Date: Fri, 20 Dec 2013 09:31:20 +0100 Subject: [PATCH] Re-enabled tests, only one is failling now. --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 390ff234..b6ce6c2c 100644 --- a/build.gradle +++ b/build.gradle @@ -47,8 +47,8 @@ combineJs { } task testRhino(type: AllRhinoTests) { - dependsOn 'testRhinoBase', 'testRhinoDebugAll', 'testRhinoDebugComments', 'testRhinoDebugMediaquery' -// dependsOn 'testRhinoBase', 'testRhinoErrors', 'testRhinoLegacy', 'testRhinoStaticUrls', 'testRhinoCompression', 'testRhinoDebugAll', 'testRhinoDebugComments', 'testRhinoDebugMediaquery', 'testRhinoNoJsError' +// dependsOn 'testRhinoBase' + dependsOn 'testRhinoBase', 'testRhinoErrors', 'testRhinoLegacy', 'testRhinoStaticUrls', 'testRhinoCompression', 'testRhinoDebugAll', 'testRhinoDebugComments', 'testRhinoDebugMediaquery', 'testRhinoNoJsError' } task testRhinoBase(type: RhinoTest) { @@ -231,10 +231,10 @@ class RhinoTest extends DefaultTask { expected = expected.replace("/","\\") // println "* actual *" // println actual - new File("actual.txt").write(actual) +// new File("actual.txt").write(actual) // println "* expected *" // println expected - new File("expected.txt").write(expected) +// new File("expected.txt").write(expected) assert actual == expected testSuccesses++ println stylize(' ok', 'green')