From d4dbfe8974ff146ddfb7555d97344e796dcd1766 Mon Sep 17 00:00:00 2001 From: bholmesdev Date: Fri, 11 Mar 2022 22:26:21 +0000 Subject: [PATCH] [ci] format --- packages/astro/test/cli.test.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/astro/test/cli.test.js b/packages/astro/test/cli.test.js index a90f26cef..793418d50 100644 --- a/packages/astro/test/cli.test.js +++ b/packages/astro/test/cli.test.js @@ -58,8 +58,10 @@ describe('astro cli', () => { }); }); - - const hostToExposeFlags = [['', ''], ['--hostname', 'localhost']]; + const hostToExposeFlags = [ + ['', ''], + ['--hostname', 'localhost'], + ]; hostToExposeFlags.forEach(([flag, flagValue]) => { it(`astro ${cmd} ${flag} ${flagValue} - host to expose`, async () => { const { local, network } = await cliServerLogSetupWithFixture([flag, flagValue], cmd); @@ -73,7 +75,11 @@ describe('astro cli', () => { }); }); - const noNetworkLogFlags = [['--host', 'localhost'], ['--host', '127.0.0.1'], ['--hostname', '127.0.0.1']]; + const noNetworkLogFlags = [ + ['--host', 'localhost'], + ['--host', '127.0.0.1'], + ['--hostname', '127.0.0.1'], + ]; noNetworkLogFlags.forEach(([flag, flagValue]) => { it(`astro ${cmd} ${flag} ${flagValue} - no network log`, async () => { const { local, network } = await cliServerLogSetupWithFixture([flag, flagValue], cmd);