From 0981c3775bd6a246c19c89c18e2f5bb338201269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Bou=C3=A7as?= Date: Wed, 4 Aug 2021 13:18:03 +0100 Subject: [PATCH] chore!: update test fixture names (#3096) * chore!: update test fixture names * chore: skip flaky test --- tests/command.deploy.test.js | 6 +++--- tests/command.functions.test.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/command.deploy.test.js b/tests/command.deploy.test.js index 02e2a2a6852..691f531d479 100644 --- a/tests/command.deploy.test.js +++ b/tests/command.deploy.test.js @@ -574,7 +574,7 @@ if (process.env.NETLIFY_TEST_DISABLE_LIVE !== 'true') { runtime: 'js', } - await withSiteBuilder('site-with-functions-manifest', async (builder) => { + await withSiteBuilder('site-with-functions-manifest-1', async (builder) => { await builder .withNetlifyToml({ config: { @@ -633,7 +633,7 @@ if (process.env.NETLIFY_TEST_DISABLE_LIVE !== 'true') { runtime: 'js', } - await withSiteBuilder('site-with-functions-manifest', async (builder) => { + await withSiteBuilder('site-with-functions-manifest-2', async (builder) => { await builder .withNetlifyToml({ config: { @@ -695,7 +695,7 @@ if (process.env.NETLIFY_TEST_DISABLE_LIVE !== 'true') { runtime: 'js', } - await withSiteBuilder('site-with-functions-manifest', async (builder) => { + await withSiteBuilder('site-with-functions-manifest-3', async (builder) => { await builder .withNetlifyToml({ config: { diff --git a/tests/command.functions.test.js b/tests/command.functions.test.js index 4fe14c7665c..de14c954ef5 100644 --- a/tests/command.functions.test.js +++ b/tests/command.functions.test.js @@ -182,7 +182,7 @@ const withFunctionsServer = async ({ builder, args = [], port = DEFAULT_PORT }, } } -test('should serve functions on default port', async (t) => { +test.skip('should serve functions on default port', async (t) => { await withSiteBuilder('site-with-ping-function', async (builder) => { await builder .withNetlifyToml({ config: { functions: { directory: 'functions' } } })