Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么 1 是用 export 语句写的,就像这里正确渲染 1
exports[`renders correctly 1`] = ` <h1> Facebook </h1> `;
我自己找到了这个问题的答案。
这里。数字表示如果我们有两个快照的相同名称,那么这个数字就会改变。像上面一样,如果我有另一个与它同名的快照测试(“正确渲染”),那么它将具有如下快照:
exports[`renders correctly 2`] = ` <h1> Facebook </h1> `;