浅色
通过浅浅的渲染和轻松的模拟,可以轻松进行角度测试。
文件
原理图
(感谢@mihalcan!)
文章
Angular版本支持
角度的
浅色
11倍
11倍
10倍
10倍
9倍
9倍
6x-8x
8倍
5倍
<= 7.2.0
超级简单的测试
describe ( 'ColorLinkComponent' , ( ) => {
let shallow : Shallow ;
beforeEach ( ( ) => {
shallow = new Shallow ( ColorLinkComponent , MyModule ) ;
} ) ;
it ( 'renders a link with the name of the color' , async ( ) => {
const { find } = await shallow . render ( { bind : { color : 'Blue' } } ) ;
// or shallow.render(`<color-link co
1