Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
Add playground
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-roemer committed Apr 19, 2015
1 parent 40a90e9 commit 824ad83
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/client/spec/playground.spec.js
@@ -0,0 +1,10 @@
/**
* Playground: Client Tests.
*/
describe("YOUR_CLIENT_TEST_SUITE", function () {

it("YOUR_CLIENT_TEST", function () {
// YOUR_CODE
});

});
10 changes: 10 additions & 0 deletions test/func/spec/playground.spec.js
@@ -0,0 +1,10 @@
/**
* Playground: Functional Tests.
*/
describe("YOUR_FUNCTIONAL_TEST_SUITE", function () {

it("YOUR_FUNCTIONAL_TEST", function () {
// YOUR_CODE
});

});
10 changes: 10 additions & 0 deletions test/server/rest/playground.spec.js
@@ -0,0 +1,10 @@
/**
* Playground: Server REST Tests.
*/
describe("YOUR_SERVER_REST_TEST_SUITE", function () {

it("YOUR_SERVER_REST_TEST", function () {
// YOUR_CODE
});

});
10 changes: 10 additions & 0 deletions test/server/spec/playground.spec.js
@@ -0,0 +1,10 @@
/**
* Playground: Server Unit Tests.
*/
describe("YOUR_SERVER_UNIT_TEST_SUITE", function () {

it("YOUR_SERVER_UNIT_TEST", function () {
// YOUR_CODE
});

});

0 comments on commit 824ad83

Please sign in to comment.