Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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!
Happy coding!