@@ -42,21 +42,21 @@ module.exports = {
4242 done ( )
4343 } ,
4444
45- 'Should click Sign In to open login modal #group1' : '' + function ( browser : NightwatchBrowser ) {
45+ 'Should click Sign In to open login modal #group1' : function ( browser : NightwatchBrowser ) {
4646 browser
4747 // No invite in URL, so no invite overlay — just the normal IDE with a Sign In button
4848 . waitForElementVisible ( '*[data-id="login-button"]' , 30000 )
4949 . click ( '*[data-id="login-button"]' )
5050 . pause ( 2000 )
5151 } ,
5252
53- 'Should show login modal with "I have an invite code" button #group1' : '' + function ( browser : NightwatchBrowser ) {
53+ 'Should show login modal with "I have an invite code" button #group1' : function ( browser : NightwatchBrowser ) {
5454 browser
5555 // The login modal should now be open with the invite code toggle
5656 . waitForElementVisible ( '*[data-id="invite-code-toggle-btn"]' , 15000 )
5757 } ,
5858
59- 'Should enter invite code and submit #group1' : '' + function ( browser : NightwatchBrowser ) {
59+ 'Should enter invite code and submit #group1' : function ( browser : NightwatchBrowser ) {
6060 browser
6161 // Click the "I have an invite code" button to reveal the input
6262 . click ( '*[data-id="invite-code-toggle-btn"]' )
@@ -69,7 +69,7 @@ module.exports = {
6969 . pause ( 2000 )
7070 } ,
7171
72- 'Should show invite overlay and click Sign In #group1' : '' + function ( browser : NightwatchBrowser ) {
72+ 'Should show invite overlay and click Sign In #group1' : function ( browser : NightwatchBrowser ) {
7373 browser
7474 // The invite overlay should now be visible with a Sign In / login button
7575 . waitForElementVisible ( {
@@ -84,7 +84,7 @@ module.exports = {
8484 . pause ( 2000 )
8585 } ,
8686
87- 'Should login via the test pool #group1' : '' + function ( browser : NightwatchBrowser ) {
87+ 'Should login via the test pool #group1' : function ( browser : NightwatchBrowser ) {
8888 browser
8989 . pause ( 3000 )
9090 . waitForElementVisible ( {
@@ -99,15 +99,15 @@ module.exports = {
9999 . pause ( 5000 )
100100 } ,
101101
102- 'Should click Join Beta on the invite modal #group1' : '' + function ( browser : NightwatchBrowser ) {
102+ 'Should click Join Beta on the invite modal #group1' : function ( browser : NightwatchBrowser ) {
103103 browser
104104 . waitForElementVisible ( '*[data-id="invite-join-beta-btn"]' , 15000 )
105105 . click ( '*[data-id="invite-join-beta-btn"]' )
106106 . waitForElementVisible ( '*[data-id="invite-get-started-btn"]' , 15000 )
107107 . click ( '*[data-id="invite-get-started-btn"]' )
108108 } ,
109109
110- 'Should show the user as logged in with test provider #group1' : '' + function ( browser : NightwatchBrowser ) {
110+ 'Should show the user as logged in with test provider #group1' : function ( browser : NightwatchBrowser ) {
111111 browser
112112 . execute ( function ( ) {
113113 const user = localStorage . getItem ( 'remix_user' )
@@ -130,7 +130,7 @@ module.exports = {
130130 } )
131131 } ,
132132
133- 'Should show BETA tag on user menu button #group1' : '' + function ( browser : NightwatchBrowser ) {
133+ 'Should show BETA tag on user menu button #group1' : function ( browser : NightwatchBrowser ) {
134134 browser
135135 . waitForElementVisible ( '*[data-id="user-menu-compact"]' , 10000 )
136136 . click ( '*[data-id="user-menu-compact"]' )
0 commit comments