您的片段
这些是在您的日常编码生活中使用的一些便捷代码段。
包括用于 , 和片段。
JavaScript和TypeScript代码段
浓
创建一个console.log并将您键入的内容扩展为变量和具有相同文本的字符串。
console . log ( "variable" , variable ) ;
描述
创建一个describe测试存根。
describe ( "description" , ( ) => {
// your tests here
} ) ;
Itt
创建一个it测试存根。
it ( "description" , ( ) => {
// your tests here
} ) ;
艾特
创建一个异步it测试存根。
it ( "description" , async ( ) => {
// your tests here
} ) ;
2021-12-10 15:08:28
7.07MB
1