Fixes the date not being set on changing cycle day, and adds a test for this case

This commit is contained in:
Sofiya Tepikin
2019-08-19 22:23:41 +02:00
parent c226923759
commit 29a076e5a2
4 changed files with 50 additions and 9 deletions
+30
View File
@@ -0,0 +1,30 @@
const LocalDate = require("js-joda").LocalDate
const moment = require('moment')
describe('Date', () => {
beforeEach(async () => {
await device.reloadReactNative()
})
it('should have same date when navigating between cycle day and symptom view', async () => {
await element(by.id('licenseOkButton')).tap()
await element(by.text('add data for today')).tap()
await expect(
element(by.id('cycleDayTitleDate').and(by.text('today')))
).toBeVisible()
await element(by.id('previousDateButton')).tap()
await element(by.id('drip-icon-bleeding')).tap()
const today = LocalDate.now()
const yesterday = today.minusDays(1)
const yesterdayFormatted = moment(
yesterday.toString()).format('MMMM Do YYYY')
.toLowerCase()
await expect(
element(by.id('symptomViewTitleDate').and(by.text(yesterdayFormatted)))
).toBeVisible()
})
})