context.skip([message])
message<string> 可选择的跳过消息。
此函数会使测试的输出显示该测试已被跳过。如果提供了 message,它将包含在输出中。调用 skip() 不会终止测试函数的执行。此函数不返回任何值。
【This function causes the test's output to indicate the test as skipped. If
message is provided, it is included in the output. Calling skip() does
not terminate execution of the test function. This function does not return a
value.】
test('top level test', (t) => {
// Make sure to return here as well if the test contains additional logic.
t.skip('this is skipped');
});