29 lines
824 B
Go
29 lines
824 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual incrementalParsingDynamicImport2"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestIncrementalParsingDynamicImport2(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @lib: es2015
|
|
// @Filename: ./foo.ts
|
|
export function bar() { return 1; }
|
|
// @Filename: ./0.ts
|
|
/*1*/ import { bar } from "./foo"`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyNumberOfErrorsInCurrentFile(t, 0)
|
|
f.GoToMarker(t, "1")
|
|
f.Insert(t, "var x = ")
|
|
f.VerifyNumberOfErrorsInCurrentFile(t, 1)
|
|
}
|