书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 1291 个相关结果.
  • Setup and Teardown

    Setup and Teardown 为多次测试重复设置 一次性设置 作用域 describe 和 test 块的执行顺序 通用建议 Setup and Teardown 写测试的时候你经常需要在运行测试前做一些准备工作,和在运行测试后进行一些整理工作。 Jest 提供辅助函数来处理这个问题。 为多次测试重复设置 如果你有一些要为多次...
  • Setup and Teardown

    为多次测试重复设置 一次性设置 作用域 desribe和test块的执行顺序 通用建议 写测试的时候你经常需要在运行测试前做一些准备工作,和在运行测试后进行一些整理工作。 Jest 提供辅助函数来处理这个问题。 为多次测试重复设置 如果你有一些要为多次测试重复设置的工作,你可以使用 beforeEach 和 afterEach 。 例如...
  • 从头开始

    开始吧 设置React Storybook 重用CSS 添加资源 开始吧 Storybook 是在开发模式下 与 您的应用程序一起运行的. 它可以帮助您构建UI组件,并与 应用程序的 业务逻辑和上下文 隔离开来. 本期"学习 Storybook"适用于 React ; Vue和Angular 版本即将推出. 整个页面 -> 拿出各种组...
  • Welcome

    What is this guide? Further Reading This book is written for Vue.js 3 and Vue Test Utils v2. Find the Vue.js 2 version here . What is this guide? Welcome to the Vue.js testi...
  • Welcome

    What is this guide? Further Reading This book is written for Vue.js 2 and Vue Test Utils v1. Find the Vue.js 3 version here . What is this guide? Welcome to the Vue.js testi...
  • Using Matchers

    Using Matchers 普通匹配器 Truthiness 数字 字符串 Arrays and iterables 例外 以及更多 Using Matchers Jest使用“匹配器”让你可以用各种方式测试你的代码。 这篇文档将向你介绍一些常用的匹配器, 在 expect API 的文档里 可以看到完整的列表。 普通匹配器 ...
  • Using Matchers

    Using Matchers 普通匹配器 Truthiness 数字 字符串 Arrays and iterables 例外 以及更多 Using Matchers Jest使用“匹配器”让你可以用各种方式测试你的代码。 这篇文档将向你介绍一些常用的匹配器, 在 expect API 的文档里 可以看到完整的列表。 普通匹配器 ...
  • Using Matchers

    普通匹配器 Truthiness 数字 字符串 Arrays and iterables 例外 以及更多 Jest使用“匹配器”让你可以用各种方式测试你的代码。 这篇文档将向你介绍一些常用的匹配器, 在 expect API 的文档里 可以看到完整的列表。 普通匹配器 最简单的测试值的方法是看是否精确匹配。 test ( 'two ...
  • 使用匹配器

    普通匹配器 真值 数字 字符串 Arrays and iterables 例外 以及更多 Jest使用“匹配器”让你可以用各种方式测试你的代码。 这篇文档将向你介绍一些常用的匹配器, 想要看到完整的列表,请查阅 expect API 的文档 。 普通匹配器 最简单的测试值的方法是看是否精确匹配。 test ( 'two plus tw...
  • Adding TypeScript

    Adding TypeScript Adding TypeScript Note: this feature is available with react-scripts@2.1.0 and higher. TypeScript is a typed superset of JavaScript that compiles to plai...