使用jest时,vscode工具提示不起作用

时间:2017-10-05 07:43:01

标签: javascript node.js visual-studio-code jestjs

我有一个奇怪的场景,当鼠标悬停在Visual Studio代码中的变量上时,工具提示信息停止使用Jest测试框架。我调试时,Mocha中完全相同的测试将显示工具提示。

VSCode版本1.16.1

这是通常出现的工具提示:
The tooltip that normally appears

导致工具提示停止显示的测试:

var axios = require('axios')

describe('asdf', () =>{
    it('does stuff', async () => {

        var boo = { 'hi':'bye'}
        console.log(boo)

        // uncomment out this line and the tooltip disappears!
        //var result = axios.post('', {})
    })
})

github repo for reproduction

1 个答案:

答案 0 :(得分:0)

看起来它是VSCode中的一个错误,报告here