From cd3f85372eb9d9d5f5cb91efbaaae39a0a84477e Mon Sep 17 00:00:00 2001 From: Morton Fox Date: Fri, 1 Jun 2018 00:13:19 -0400 Subject: [PATCH] Update Jasmine link --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 5660a1f..63547c8 100644 --- a/README.markdown +++ b/README.markdown @@ -7,7 +7,7 @@ Test JavaScript using Jasmine BDD from the browser and on the command line. Outp ## Overview By default, CakePHP does not come with any kind of support for JavaScript unit testing.... -But most of us need it, right? Here is an example of Jasmine BDD (http://pivotal.github.com/jasmine/) integrated +But most of us need it, right? Here is an example of Jasmine BDD (https://jasmine.github.io/) integrated with CakePHP. This example allows you to test in the browser and also run your tests from the command line and output the results to a JUnit xml file. JUnit is a format used in numerous Continuous Integration apps. @@ -42,4 +42,4 @@ Open up app/webroot/tests/index.html and include any of your core lib files. Fro By default, it will only test against index.html. If you want to add different .html files to test against, you can do so by create another html file in the app/webroot/tests/ directory, let's say we created "anothertest.html". To test that in our browser we would navigate to "http://yourapp/testjs.php?file=anothertest". To test it on the command line you would do ./cake testjssuite anothertest -Happy coding! \ No newline at end of file +Happy coding!