44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
. "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash/tests/util"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestCompletionsJSDocNoCrash2(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @strict: true
|
|
// @filename: index.ts
|
|
/**
|
|
* @example
|
|
<file name="glyphicons.css">
|
|
@import url(//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css);
|
|
</file>
|
|
<example module="ngAnimate" deps="angular-animate.js" animations="true">
|
|
<file name="animations.css">
|
|
.animate-show.ng-hide-add.ng-hide-add-active,
|
|
.animate-show.ng-hide-remove.ng-hide-remove-active {
|
|
transition:all linear 0./**/5s;
|
|
}
|
|
</file>
|
|
</example>
|
|
*/
|
|
var ngShowDirective = ['$animate', function($animate) {}];`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: CompletionGlobalTypes,
|
|
},
|
|
})
|
|
}
|