FIX: acceptance/bookmarks test date issue (#11739)
The post date was not being used in the spec, rather today's date which broke after the first day the test was introduced.
This commit is contained in:
parent
39e9e40268
commit
d0ef952af2
|
@ -220,8 +220,11 @@ acceptance("Bookmarking", function (needs) {
|
||||||
|
|
||||||
test("Using a post date for the reminder date", async function (assert) {
|
test("Using a post date for the reminder date", async function (assert) {
|
||||||
await visit("/t/internationalization-localization/280");
|
await visit("/t/internationalization-localization/280");
|
||||||
let now = moment.tz(loggedInUser().resolvedTimezone(loggedInUser()));
|
let postDate = moment.tz(
|
||||||
let today = now.format("YYYY-MM-DD");
|
"2021-01-15",
|
||||||
|
loggedInUser().resolvedTimezone(loggedInUser())
|
||||||
|
);
|
||||||
|
let postDateFormatted = postDate.format("YYYY-MM-DD");
|
||||||
await openBookmarkModal();
|
await openBookmarkModal();
|
||||||
await fillIn("input#bookmark-name", "Test name");
|
await fillIn("input#bookmark-name", "Test name");
|
||||||
await click("#tap_tile_post_local_date");
|
await click("#tap_tile_post_local_date");
|
||||||
|
@ -234,7 +237,7 @@ acceptance("Bookmarking", function (needs) {
|
||||||
);
|
);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
queryAll("#bookmark-custom-date > input").val(),
|
queryAll("#bookmark-custom-date > input").val(),
|
||||||
today,
|
postDateFormatted,
|
||||||
"it should prefill the bookmark date"
|
"it should prefill the bookmark date"
|
||||||
);
|
);
|
||||||
assert.equal(
|
assert.equal(
|
||||||
|
|
Loading…
Reference in New Issue