返回介绍

render()

发布于 2023-10-15 16:32:58 字数 1528 浏览 0 评论 0 收藏 0

  • 参数

    • {Component} component
    • {Object} options
      • {Object|Array<string>} stubs
      • {Object} data
  • 返回值{Promise<CheerioWrapper>}

  • 选项:移步 挂载选项

  • 用法

将一个对象渲染成为一个字符串并返回一个 cheerio 包裹器

Cheerio 是一个类似 jQuery 的库,可以在 Node.js 中游览 DOM 对象。它的 API 和 San Test Utils 的 Wrapper 类似。

render 在底层使用 san-ssr 将一个组件渲染为静态的 HTML。

不使用options选项

import {render} from 'san-test-utils/dist/san-test-utils.ssr';
import foo from './foo';

describe('Foo', () => {
    it('renders a div', async () => {
        const wrapper = await render(foo);
        expect(wrapper.text()).toContain('<div></div>')
    });
});

使用options选项

import {render} from 'san-test-utils/dist/san-test-utils.ssr';
import foo from './foo';

describe('Foo', () => {
    it('renders a div', async () => {
        const wrapper = render(foo, {
            data: {
                color: 'red'
            }
        });
        expect(wrapper.text()).toContain('red');
    });
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文