Merge pull request #2042 from chenba/2031-functional-test-post-sub-selector

fix(tests): wait for 123done page after successful subscription
This commit is contained in:
Barry Chen 2019-08-01 17:13:35 -05:00 коммит произвёл GitHub
Родитель 68eaa948cb 571bf3061c
Коммит e2a222e528
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2392,7 +2392,7 @@ const subscribeToTestProduct = thenify(function() {
.then(type('input[name=zip]', '12345'))
.then(click('input[type=checkbox]'))
.then(click('button[name=submit]'))
.then(testElementExists('.subscription-ready'));
.then(testElementTextEquals('#splash header h1', '123done'));
});
module.exports = {