Giter VIP home page Giter VIP logo

Comments (4)

neenhouse avatar neenhouse commented on September 10, 2024 1

This doesn't always work. If you want to test integration of async components within a container, you need to be able to mock the async loading of them. We need better documentation here on how you do that. Simply flipping to sync require isn't really properly testing that scenario.

from react-async-component.

cescoferraro avatar cescoferraro commented on September 10, 2024

@andreyluiz why dont you use require('../components/Forgot') in your tests instead of Forgot. So you wont have this problem in your test env?

from react-async-component.

flasd avatar flasd commented on September 10, 2024

Managed to test by using the same server side rendering logic and cheerio to parse the output.

import React from 'react';
import asyncBootstrapper from 'react-async-bootstrapper';
import cheerio from 'cheerio';
import { AsyncComponentProvider, createAsyncContext } from 'react-async-component';
import { expect } from 'chai';
import { renderToStaticMarkup } from 'react-dom/server';

import Container from './index';

describe('Some Container', () => {
    it('should resolve on the server', (done) => {
        const asyncContext = createAsyncContext();

        const component = (
            <AsyncComponentProvider asyncContext={asyncContext}>
                <Container />
            </AsyncComponentProvider>
        );

        asyncBootstrapper(component)
            .then(() => {
                const html = renderToStaticMarkup(component);
                const $ = cheerio.load(html);

                expect($('div').children().length).to.equal(2);
                // etc...

                done();
            })
            .catch(error => {
                done(error);
            });
    });
});

from react-async-component.

ctrlplusb avatar ctrlplusb commented on September 10, 2024

Kent C Dodds also has an integration test friendly library react-testing-library. I would recommend looking at that one too 👍

from react-async-component.

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.