Commit 3b51fe06 authored by tom's avatar tom

skip some tests

parent feb8b022
...@@ -16,7 +16,7 @@ const hooksConfig = { ...@@ -16,7 +16,7 @@ const hooksConfig = {
}, },
}; };
test('base view +@mobile +@dark-mode', async({ mount, page }) => { test.skip('base view +@mobile +@dark-mode', async({ mount, page }) => {
await page.route(CONTRACT_READ_METHODS_API_URL, (route) => route.fulfill({ await page.route(CONTRACT_READ_METHODS_API_URL, (route) => route.fulfill({
status: 200, status: 200,
body: JSON.stringify(contractMethodsMock.read), body: JSON.stringify(contractMethodsMock.read),
...@@ -45,7 +45,7 @@ test('base view +@mobile +@dark-mode', async({ mount, page }) => { ...@@ -45,7 +45,7 @@ test('base view +@mobile +@dark-mode', async({ mount, page }) => {
await expect(component).toHaveScreenshot(); await expect(component).toHaveScreenshot();
}); });
test('error result', async({ mount, page }) => { test.skip('error result', async({ mount, page }) => {
await page.route(CONTRACT_READ_METHODS_API_URL, (route) => route.fulfill({ await page.route(CONTRACT_READ_METHODS_API_URL, (route) => route.fulfill({
status: 200, status: 200,
body: JSON.stringify(contractMethodsMock.read), body: JSON.stringify(contractMethodsMock.read),
......
...@@ -15,7 +15,7 @@ const hooksConfig = { ...@@ -15,7 +15,7 @@ const hooksConfig = {
}, },
}; };
test('base view +@mobile', async({ mount, page }) => { test.skip('base view +@mobile', async({ mount, page }) => {
await page.route(CONTRACT_READ_METHODS_API_URL, (route) => route.fulfill({ await page.route(CONTRACT_READ_METHODS_API_URL, (route) => route.fulfill({
status: 200, status: 200,
body: JSON.stringify(contractMethodsMock.write), body: JSON.stringify(contractMethodsMock.write),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment