lib/popcorn: fix file inclusion for Jenkins tests
[nit.git] / lib / popcorn / examples / angular / tests / test_example_angular.nit
index 641b3bd..7c6fa1d 100644 (file)
@@ -32,7 +32,7 @@ class TestExampleAngular
        fun test_example_angular do
                var app = new App
                app.use("/counter", new CounterAPI)
-               app.use("/*", new StaticHandler("examples/angular/www/", "index.html"))
+               app.use("/*", new StaticHandler(test_path / "../www/", "index.html"))
                run_test(app)
        end
 end