Git Product home page Git Product logo

Comments (3)

montemishkin avatar montemishkin commented on May 24, 2024

Seems like a problem with your testing environment. The error says there is no document. Thus I'm guessing you are running your tests in a node environment (as opposed to running them in browser environment).

If you are trying to test how your components will render in a browser environment, there are many tools out there that will run your tests in browser. Two examples are karma and browser-run.

If you are trying to test how your components will render on the server, then you will need to do something more along the lines of this in your tests:

import {renderToString} from 'react-dom/server'
import {StyleSheetServer} from 'aphrodite'

const {html, css} = StyleSheetServer.renderStatic(() => renderToString(<Dummy {...props} />))

as explained here.

Hope that helps!

from aphrodite.

xymostech avatar xymostech commented on May 24, 2024

Aphrodite won't work without a browser environment. It tries to automatically inject styles into the document, which doesn't work without some setup. I'm not sure what your TestUtils.createRenderer() does, but as @montemishkin says, wrapping your call in StyleSheetServer.renderStatic is probably what you want to do.

You can also use something like jsdom to simulate a browser environment, which is what we do in our tests: https://github.com/Khan/aphrodite/blob/master/tests/index_test.js#L9

from aphrodite.

niksosf avatar niksosf commented on May 24, 2024

@xymostech @montemishkin Thanks guys, indeed, I am using just mocha testing and didn't realize that Aphrodite requires a DOM to render out the styles (that's my current understanding). Appreciate the suggestion to use StyleSheetServer.renderStatic.

from aphrodite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.