visual studio 代码中有没有办法导出单元测试的结果?
There's a way to export the result of the unit test in visual studio code?
我在 adonis.js 中进行了此测试 - node.js:
test('realiza login com o usuário registrado', async ({ client }) => {
const response = await client
.post('login')
.send({
username: 'usuarioteste',
password: 'usuarioteste'
})
.end()
response.assertStatus(200)
})
当我 运行 adonis test
我收到:
Usuario
superagent: Enable experimental feature http2
✓ make a register (411ms)
✓ login (132ms)
PASSED
total : 2
passed : 2
time : 903ms
有办法将此日志导出到外部文件吗?
请参考本教程:https://www.windowscentral.com/how-save-command-output-file-using-command-prompt-or-powershell
简而言之:
您可以使用此命令将命令输出保存到文件 (Linux & Windows) :
> adonis test > yourfile.txt
我在 adonis.js 中进行了此测试 - node.js:
test('realiza login com o usuário registrado', async ({ client }) => {
const response = await client
.post('login')
.send({
username: 'usuarioteste',
password: 'usuarioteste'
})
.end()
response.assertStatus(200)
})
当我 运行 adonis test
我收到:
Usuario
superagent: Enable experimental feature http2
✓ make a register (411ms)
✓ login (132ms)
PASSED
total : 2
passed : 2
time : 903ms
有办法将此日志导出到外部文件吗?
请参考本教程:https://www.windowscentral.com/how-save-command-output-file-using-command-prompt-or-powershell
简而言之:
您可以使用此命令将命令输出保存到文件 (Linux & Windows) :
> adonis test > yourfile.txt