From 2fcb40dbd39a265af5eccac123d90295078abc0d Mon Sep 17 00:00:00 2001 From: campersau Date: Tue, 5 May 2020 17:52:31 +0200 Subject: [PATCH] use different commit name for commit & push with ff --- clicktests/spec.remotes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clicktests/spec.remotes.js b/clicktests/spec.remotes.js index 0ac9c51d6..ac283af37 100644 --- a/clicktests/spec.remotes.js +++ b/clicktests/spec.remotes.js @@ -117,10 +117,10 @@ describe('[REMOTES]', () => { it('Should be possible to commitnpush with ff', async () => { await environment.click('.amend-link'); + await environment.insert('.staging input.form-control', 'Commit & Push with ff'); await environment.click('.commit-grp .dropdown-toggle'); await environment.click('.commitnpush'); await environment.click('.modal-dialog .btn-primary'); - await environment.waitForElementVisible('.nux'); - await environment.waitForElementHidden('#nprogress'); + await environment.waitForElementVisible('[data-ta-node-title="Commit & Push with ff"]') }); });