mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 12:55:22 +00:00
Adds test to validate that description is shown
This commit is contained in:
@@ -27,7 +27,8 @@ let config = {
|
||||
title: "Rodrigo Ramirez Blog",
|
||||
url: "http://localhost:8080/tests/configs/data/feed_test_rodrigoramirez.xml"
|
||||
}
|
||||
]
|
||||
],
|
||||
showDescription: true
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@@ -36,6 +36,10 @@ describe("Newsfeed module", function () {
|
||||
it("should show the newsfeed article", function () {
|
||||
return app.client.waitUntilTextExists(".newsfeed .newsfeed-title", "QPanel", 10000);
|
||||
});
|
||||
|
||||
it("should show the newsfeed description", function () {
|
||||
return app.client.waitUntilTextExists(".newsfeed .newsfeed-desc", "Para instalar esta nueva versión", 10000);
|
||||
});
|
||||
});
|
||||
|
||||
describe("Custom configuration", function () {
|
||||
|
Reference in New Issue
Block a user