diff --git a/tests/integration/fetch/fetch.js b/tests/integration/fetchsync/fetchsync.js similarity index 100% rename from tests/integration/fetch/fetch.js rename to tests/integration/fetchsync/fetchsync.js diff --git a/tests/integration/handlers.js b/tests/integration/handlers.js index 3e2dbac..fe83f65 100644 --- a/tests/integration/handlers.js +++ b/tests/integration/handlers.js @@ -1,5 +1,5 @@ export { handler as btoa } from './btoa/btoa.js'; export { handler as performance } from './performance/performance.js'; export { handler as crypto } from './crypto/crypto.js'; -export { handler as fetch } from './fetch/fetch.js'; +export { handler as fetchsync } from './fetchsync/fetchsync.js'; export { handler as timers } from './timers/timers.js'; diff --git a/tests/tests.cmake b/tests/tests.cmake index 452dc76..d6bde7f 100644 --- a/tests/tests.cmake +++ b/tests/tests.cmake @@ -38,5 +38,5 @@ test_e2e(tla-runtime-resolve) test_integration(btoa) test_integration(performance) test_integration(crypto) -test_integration(fetch) +test_integration(fetchsync) test_integration(timers)