我正在JavaScript中構建一個簡單的單元測試方法。輸出正在控制檯中打印。將樣式添加到chrome中的console.table()
我希望通過測試的行是綠色的,而失敗的測試是紅色的(背景或文本)。
我知道我可以添加樣式到console.log(),但我還沒有找到添加樣式到console.table()的方法。
那麼,它甚至有可能嗎?如果不是,將會有什麼替代方案。
代碼示例:
console.table([
{
status: 'failed',
function: 'Validate.int',
asserted: true,
result: false
},{
status: 'passed',
function: 'Validate.float',
asserted: true,
result: true
}
]);
TNX提前!
我已經更新了我的答案。讓我知道它是否滿足您的需求 – faby 2014-12-04 10:46:37