summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2023-08-14 16:29:04 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-08-14 16:29:04 +0000
commita34a48826cbbcf749f05ba19ce0edaa701437e62 (patch)
tree498a53f8d15059b9a52d01e21d1b601e42bf6666
parentda517d4055825ee1b630cd4a6983818d6120a7b7 (diff)
downloadastro-a34a48826cbbcf749f05ba19ce0edaa701437e62.tar.gz
astro-a34a48826cbbcf749f05ba19ce0edaa701437e62.tar.zst
astro-a34a48826cbbcf749f05ba19ce0edaa701437e62.zip
[ci] format
-rw-r--r--packages/astro/e2e/react-component.test.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/astro/e2e/react-component.test.js b/packages/astro/e2e/react-component.test.js
index 2d205fc5b..b19a071d6 100644
--- a/packages/astro/e2e/react-component.test.js
+++ b/packages/astro/e2e/react-component.test.js
@@ -46,10 +46,10 @@ test.describe('React client id generation', () => {
const hydratedId1 = await components.nth(2).getAttribute('id');
const clientOnlyId0 = await components.nth(3).getAttribute('id');
const clientOnlyId1 = await components.nth(4).getAttribute('id');
- console.log("ho ho", staticId, hydratedId0, hydratedId1, clientOnlyId0, clientOnlyId1)
- expect(staticId).not.toEqual(hydratedId0)
- expect(hydratedId0).not.toEqual(hydratedId1)
- expect(hydratedId1).not.toEqual(clientOnlyId0)
- expect(clientOnlyId0).not.toEqual(clientOnlyId1)
+ console.log('ho ho', staticId, hydratedId0, hydratedId1, clientOnlyId0, clientOnlyId1);
+ expect(staticId).not.toEqual(hydratedId0);
+ expect(hydratedId0).not.toEqual(hydratedId1);
+ expect(hydratedId1).not.toEqual(clientOnlyId0);
+ expect(clientOnlyId0).not.toEqual(clientOnlyId1);
});
-})
+});