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

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

    匹配器的使用 常用的匹配器 真值 数字 字符串 Arrays and iterables 例外 以及更多 Version: 27.2 匹配器的使用 Jest使用“匹配器”的机制让你可以使用各种方法进行测试 这篇文档将向你介绍一些常用的匹配器, 想要看到完整的列表,请查阅 expect API 的文档 。 常用的匹配器 最简单测试一个...
  • Config Files

    Config Files Configuration File Types Project-wide configuration File-relative configuration 6.x vs 7.x .babelrc loading Supported file extensions Monorepos Root babel.config....
  • Using Matchers

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

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

    Structural Testing What’s Snapshot Testing? Using StoryShots Structural Testing For React, Jest’s snapshot testing is the best way to do Structural Testing.It’s painless to ...
  • 安装和移除

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

    匹配器的使用 常用的匹配器 真值 数字 字符串 数组和可迭代对象 例外 以及更多 匹配器的使用 Jest使用“匹配器”的机制让你可以使用各种方法进行测试 这篇文档将向你介绍一些常用的匹配器, 想要看到完整的列表,请查阅 expect API 的文档 。 常用的匹配器 最简单测试一个值的方法是使用精确匹配的方法。 test ( 'tw...
  • 匹配器的使用

    匹配器的使用 常用的匹配器 真值 数字 字符串 数组和可迭代对象 例外 以及更多 匹配器的使用 Jest使用“匹配器”的机制让你可以使用各种方法进行测试 这篇文档将向你介绍一些常用的匹配器, 想要看到完整的列表,请查阅 expect API 的文档 。 常用的匹配器 最简单测试一个值的方法是使用精确匹配的方法。 test ( 'tw...
  • Vuex in components - mutations and actions

    Mutations and Actions Creating the Component Testing with a real Vuex store Testing using a mock store Testing a Namespaced Action (or Mutation) Conclusion This book is writ...