Skip to content

Commit

Permalink
update roadmap url (#1031)
Browse files Browse the repository at this point in the history
update roadmap url and reenable tests
  • Loading branch information
plessbd authored Sep 10, 2019
1 parent 1ef1ffa commit 5dc3d39
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,14 @@ public function execute()
'data_warehouse_export_export_directory' => '/var/spool/xdmod/export',
'data_warehouse_export_retention_duration_days' => 30
]);

$data = parse_ini_file($this->portalSettingsPath, true);
$roadmapUrl = 'https://trello.com/embed/board?id=mdFESh6j';
if('https://trello.com/b/mdFESh6j.html' !== $data['roadmap']['url']){
$roadmapUrl = $data['roadmap']['url'];
}
$this->writePortalSettingsFile(array_merge(
['features_user_dashboard' => $dashboard],
['roadmap_url' => $roadmapUrl],
$exportSettings
));
}
Expand Down
2 changes: 1 addition & 1 deletion configuration/portal_settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dw_desc_cache = "off"

; Settings that control the "Roadmap" action on the "About" tab.
[roadmap]
url = "https://trello.com/b/mdFESh6j.html"
url = "https://trello.com/embed/board?id=mdFESh6j"
header = "Located below is the XDMoD Development roadmap, organized by XDMoD release and powered by Trello.com. To view the full roadmap as well as vote and comment on features click any one of the elements on the roadmap. This will take you to the full roadmap on the Trello.com site in a new browser window (or tab). All users will be able to view the roadmap, however if you wish to vote or comment on a feature you will need to create a (free) Trello account if you do not already have one."

[rest]
Expand Down
4 changes: 2 additions & 2 deletions tests/ui/test/specs/xdmod/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('About', function about() {
it('SUPReMM', function checkNavEntrySUPReMM() {
Abt.checkTab('SUPReMM');
});
it.skip('Roadmap', function checkNavEntryXDMoD() {
it('Roadmap', function checkNavEntryXDMoD() {
Abt.checkRoadmap();
});
it('Team', function checkNavEntryXDMoD() {
Expand Down Expand Up @@ -73,7 +73,7 @@ describe('About', function about() {
it('SUPReMM', function checkNavEntrySUPReMM() {
Abt.checkTab('SUPReMM');
});
it.skip('Roadmap', function checkNavEntryXDMoD() {
it('Roadmap', function checkNavEntryXDMoD() {
Abt.checkRoadmap();
});
it('Team', function checkNavEntryXDMoD() {
Expand Down
3 changes: 1 addition & 2 deletions tests/ui/test/specs/xdmod/about.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ class About {
expect(err).to.be.a('undefined');
expect(result).to.not.be.a('null');
});
browser.waitForExist('.trello-lists', 30000);
browser.waitForText('.trello-lists', 30000);
browser.waitForExist('.board-tile-container', 30000);
browser.frameParent();
}

Expand Down

0 comments on commit 5dc3d39

Please sign in to comment.