summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/mdx-namespace.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/mdx/test/mdx-namespace.test.js')
-rw-r--r--packages/integrations/mdx/test/mdx-namespace.test.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/mdx/test/mdx-namespace.test.js b/packages/integrations/mdx/test/mdx-namespace.test.js
index ad9587640..486910ca2 100644
--- a/packages/integrations/mdx/test/mdx-namespace.test.js
+++ b/packages/integrations/mdx/test/mdx-namespace.test.js
@@ -24,7 +24,7 @@ describe('MDX Namespace', () => {
const component = document.querySelector('#component');
expect(island).not.undefined;
- expect(component.textContent).equal('Hello world')
+ expect(component.textContent).equal('Hello world');
});
it('works for star', async () => {
@@ -35,7 +35,7 @@ describe('MDX Namespace', () => {
const component = document.querySelector('#component');
expect(island).not.undefined;
- expect(component.textContent).equal('Hello world')
+ expect(component.textContent).equal('Hello world');
});
});
@@ -62,7 +62,7 @@ describe('MDX Namespace', () => {
const component = document.querySelector('#component');
expect(island).not.undefined;
- expect(component.textContent).equal('Hello world')
+ expect(component.textContent).equal('Hello world');
});
it('works for star', async () => {
@@ -77,7 +77,7 @@ describe('MDX Namespace', () => {
const component = document.querySelector('#component');
expect(island).not.undefined;
- expect(component.textContent).equal('Hello world')
+ expect(component.textContent).equal('Hello world');
});
});
});