Skip the join flow smoke test since it was put in place to make sure we didn't launch the new join flow by mistake.

This commit is contained in:
picklesrus 2019-11-18 10:20:02 -05:00
parent 5b351b6515
commit 7fa103e344

View file

@ -23,7 +23,9 @@ tap.beforeEach(function () {
return driver.get(rootUrl);
});
test('Clicking Join Scratch opens scratchr2 iframe', t => {
// Skipping this test while launching new join flow.
// TODO: Add new smoke tests for the new Join flow!
test('Clicking Join Scratch opens scratchr2 iframe', {skip: true}, t => {
clickText('Join Scratch')
.then(() => findByXpath('//iframe[contains(@class, "mod-registration")]'))
.then(() => t.end());