2017-10-05 72 views
0

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

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

回答

0

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