-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4014 from nasa-gibs/develop
v3.35.0
- Loading branch information
Showing
59 changed files
with
1,563 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1120,6 +1120,7 @@ | |
] | ||
] | ||
} | ||
} | ||
}, | ||
"defaultLayer": "BlueMarble_NextGeneration" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
const localQueryStrings = require('../../reuseables/querystrings.js'); | ||
|
||
const TIME_LIMIT = 10000; | ||
|
||
module.exports = { | ||
before: (c) => { | ||
c.url(c.globals.url + localQueryStrings.knownDate); | ||
c.pause(1000); | ||
c.setWindowSize(375, 667); | ||
c.pause(1000); | ||
}, | ||
|
||
'Mobile animate button opens widget': (c) => { | ||
c.waitForElementVisible('.mobile-animate-button', TIME_LIMIT); | ||
c.useCss().click('.mobile-animate-button'); | ||
c.pause(500); | ||
c.waitForElementPresent('#wv-animation-widget', TIME_LIMIT); | ||
c.expect.element('.custom-interval-delta-input').to.have.value.that.equals('1'); | ||
c.expect.element('.dropdown-toggle').text.to.equal('DAY'); | ||
}, | ||
|
||
'Minimizing mobile animation widget opens collapsed animation widget': (c) => { | ||
c.useCss().click('.wv-minimize'); | ||
c.waitForElementVisible('#collapsed-animate-widget-phone-portrait', TIME_LIMIT); | ||
}, | ||
|
||
'Playing the animation changes the date of the mobile date picker': (c) => { | ||
c.useCss().click('#collapsed-animate-widget-phone-portrait'); | ||
// this pause is the minimum amount of time needed to load & play the animation on a throttled connection | ||
c.pause(20000); | ||
c.expect.element('.mobile-date-picker-select-btn-text span').text.to.equal('2019 AUG 01'); | ||
}, | ||
|
||
'Pressing the animation button brings up the mobile animation widget with the same information': (c) => { | ||
c.useCss().click('.mobile-animate-button'); | ||
c.pause(500); | ||
c.waitForElementVisible('#wv-animation-widget', TIME_LIMIT); | ||
c.expect.element('#mobile-animation-start-date .mobile-date-picker-select-btn span').text.to.equal('2019 JUL 22'); | ||
c.expect.element('#mobile-animation-end-date .mobile-date-picker-select-btn span').text.to.equal('2019 AUG 01'); | ||
}, | ||
|
||
after(c) { | ||
c.end(); | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.