summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/test/cf.test.js
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2023-08-15 17:13:43 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-08-15 17:13:43 +0000
commita37b2242d0e914763d8c501fee2150f4e41a9f67 (patch)
tree342f61e5908b97a078ec90a473ff395d0876a344 /packages/integrations/cloudflare/test/cf.test.js
parent74df833708ddb4eb3dc881cae9100cd615aa6add (diff)
downloadastro-a37b2242d0e914763d8c501fee2150f4e41a9f67.tar.gz
astro-a37b2242d0e914763d8c501fee2150f4e41a9f67.tar.zst
astro-a37b2242d0e914763d8c501fee2150f4e41a9f67.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/integrations/cloudflare/test/cf.test.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/integrations/cloudflare/test/cf.test.js b/packages/integrations/cloudflare/test/cf.test.js
index e6c2ccd0b..b671f41e9 100644
--- a/packages/integrations/cloudflare/test/cf.test.js
+++ b/packages/integrations/cloudflare/test/cf.test.js
@@ -31,7 +31,10 @@ describe('Cf metadata and caches', () => {
let html = await res.text();
let $ = cheerio.load(html);
- expect($('#cf').text()).to.contain('city', `Expected "city" to exist in runtime, but got ${$('#cf').text()}`);
+ expect($('#cf').text()).to.contain(
+ 'city',
+ `Expected "city" to exist in runtime, but got ${$('#cf').text()}`
+ );
expect($('#hasCache').text()).to.equal('true');
});
});