@@ -31,8 +31,7 @@ test.describe('Import DNSSEC name', () => {
3131 await expect ( page . getByTestId ( 'import-next-button' ) ) . toBeDisabled ( )
3232 } )
3333
34- // TODO: this is failing because stateful tests are still on goerli, we should switch to sepolia/holesky
35- test . skip ( 'should not allow the user to proceed if they have not set the correct TXT record - offchain' , async ( {
34+ test ( 'should not allow the user to proceed if they have not set the correct TXT record - offchain' , async ( {
3635 page,
3736 login,
3837 } ) => {
@@ -43,10 +42,10 @@ test.describe('Import DNSSEC name', () => {
4342 await page . getByTestId ( 'import-next-button' ) . click ( )
4443 await expect ( page . getByTestId ( 'import-heading' ) ) . toContainText ( 'Verify Ownership' )
4544 await expect ( page . getByTestId ( 'status-checker-message' ) ) . toContainText ( 'No record found' )
46- await expect ( page . getByTestId ( 'import-next-button ' ) ) . toBeDisabled ( )
45+ await expect ( page . getByTestId ( 'offchain-claim ' ) ) . toBeDisabled ( )
4746 } )
4847
49- test ( 'should not allow the use to proceed if they have not set the correct subdomain with the correct info' , async ( {
48+ test ( 'should not allow the user to proceed if they have not set the correct subdomain with the correct info' , async ( {
5049 page,
5150 login,
5251 } ) => {
@@ -60,7 +59,8 @@ test.describe('Import DNSSEC name', () => {
6059 await expect ( page . getByTestId ( 'import-next-button' ) ) . toBeDisabled ( )
6160 } )
6261
63- test ( 'should resolve .pw domains' , async ( { page, login } ) => {
62+ test . skip ( 'should resolve .pw domains' , async ( { page, login } ) => {
63+ // pw domain does not resolve on localhost
6464 await page . goto ( '/test.pw?chain=holesky' )
6565 await login . connect ( )
6666
0 commit comments