mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-26 17:16:11 -05:00
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:
parent
5b351b6515
commit
7fa103e344
1 changed files with 3 additions and 1 deletions
|
@ -23,7 +23,9 @@ tap.beforeEach(function () {
|
||||||
return driver.get(rootUrl);
|
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')
|
clickText('Join Scratch')
|
||||||
.then(() => findByXpath('//iframe[contains(@class, "mod-registration")]'))
|
.then(() => findByXpath('//iframe[contains(@class, "mod-registration")]'))
|
||||||
.then(() => t.end());
|
.then(() => t.end());
|
||||||
|
|
Loading…
Reference in a new issue