Skip to content

Commit

Permalink
fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
hthetiot committed Feb 15, 2018
1 parent 5b5f15a commit 285f37d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -13,7 +13,7 @@
"license": "BSD-3-Clause",
"main": "main.js",
"dependencies": {
"commander": "^2.14.1",
"commander": "^1.3.2",
"diacritics": "^1.3.0",
"joey": "^1.5.3",
"minidom": "^1.0.0",
Expand Down
6 changes: 3 additions & 3 deletions test/templates/app-spec.js
Expand Up @@ -99,13 +99,13 @@ describe("app template", function () {
it("should generate description", function () {
options.name = "MyApp";
template.didSetOptions(options);
expect(options.description).toEqual("MyApp Application");
expect(options.desc).toEqual("MyApp Application");
});
it("should generate description", function () {
options.name = "MyApp";
options.description = "Test description";
options.desc = "Test description";
template.didSetOptions(options);
expect(options.description).toEqual("Test description");
expect(options.desc).toEqual("Test description");
});
});
});

0 comments on commit 285f37d

Please sign in to comment.