Skip to content

Commit

Permalink
fix tests in nodes and remove skip
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezsaeed committed Dec 16, 2024
1 parent 118b98e commit df9d232
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def test_ip(browser):
assert farm_page.wait_for('IP is deleted successfully!')
assert farm_page.get_ip(ip, gateway) == (0,0)


@pytest.mark.skip(reason="https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3676")
def test_gateway(browser):
"""
Test Case: TC1142 - Enter valid Gateway
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,6 @@ def test_config_validation(browser):
assert node_page.wait_for('Please provide a valid domain.')
assert node_page.get_save_button().is_enabled()==False


@pytest.mark.skip(reason="https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3677")
def test_add_config(browser):
"""
Test Case: TC1221 - Add a public config
Expand Down Expand Up @@ -213,7 +211,6 @@ def test_add_config(browser):
time.sleep(2)
assert grid_proxy.get_node_ipv4(node_id) == new_ipv4

@pytest.mark.skip(reason="https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3677")
def test_remove_config(browser):
"""
Test Case: TC1222 - Remove a public config
Expand Down Expand Up @@ -241,7 +238,6 @@ def test_remove_config(browser):
time.sleep(2)
assert grid_proxy.get_node_ipv4(node_id) == ''

@pytest.mark.skip(reason="https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3677")
def test_additional_fee(browser):
"""
Test Case: TC1750 - Additional Fee
Expand Down

0 comments on commit df9d232

Please sign in to comment.