Merge pull request #858 from roramirez/check-week-number

Check week number
This commit is contained in:
Michael Teeuw 2017-04-19 21:45:23 +02:00 committed by GitHub
commit fa5b936d7b
3 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add test e2e `show title newsfeed` for newsfeed module.
- Add task to check configuration file.
- Add test check URLs of vendors.
- Add test of match current week number on clock module with showWeek configuration.
- Add test default modules present modules/default/defaultmodules.js.
### Updated

View File

@ -34,6 +34,7 @@
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"current-week-number": "^1.0.7",
"grunt": "latest",
"grunt-eslint": "latest",
"grunt-jsonlint": "latest",

View File

@ -119,6 +119,14 @@ describe("Clock module", function () {
return app.client.waitUntilWindowLoaded()
.getText(".clock .week").should.eventually.match(weekRegex);
});
it("shows week with correct number of week of year", function() {
const currentWeekNumber = require("current-week-number")();
const weekToShow = "Week " + currentWeekNumber;
return app.client.waitUntilWindowLoaded()
.getText(".clock .week").should.eventually.equal(weekToShow);
});
});
});