Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Fix for issue 2261 #2264

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ import { DOMWrapper } from './domWrapper'
import { VueWrapper } from './vueWrapper'
import BaseWrapper from './baseWrapper'
import { mount, shallowMount } from './mount'
import { renderToString } from './renderToString'
import { renderToString as _renderToString } from './renderToString'
import { MountingOptions } from './types'
import { RouterLinkStub } from './components/RouterLinkStub'
import { createWrapperError } from './errorWrapper'
import { config } from './config'
import { flushPromises } from './utils/flushPromises'
import { enableAutoUnmount, disableAutoUnmount } from './utils/autoUnmount'

const isNode = typeof window === 'undefined'
const renderToString = ( isNode ? _renderToString : null)
export {
mount,
shallowMount,
Expand Down
10 changes: 10 additions & 0 deletions tests/index.jsdom.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// @vitest-environment jsdom
import { describe, expect, it } from 'vitest'

import * as exports from '../src/index'
describe('index.js exports', () => {
it('in a browser environment renderToString should not be exported', () => {
// data type of null is object
expect(typeof exports.renderToString).toEqual('object');
});
})
9 changes: 9 additions & 0 deletions tests/index.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// @vitest-environment node
import { describe, expect, it } from 'vitest'

import * as exports from '../src/index'
describe('index.js exports', () => {
it('in a node environment renderToString should be exported', () => {
expect(typeof exports.renderToString).toEqual('function');
});
})