45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual codefixCrashExportGlobal"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestCodefixCrashExportGlobal(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @module: commonjs
|
|
// @esModuleInterop: false
|
|
// @allowSyntheticDefaultImports: false
|
|
// @Filename: bar.ts
|
|
import * as foo from './foo'
|
|
export as namespace foo
|
|
export = foo;
|
|
|
|
declare global {
|
|
const foo: typeof foo;
|
|
}
|
|
// @Filename: foo.d.ts
|
|
interface Root {
|
|
/**
|
|
* A .default property for ES6 default import compatibility
|
|
*/
|
|
default: Root;
|
|
}
|
|
|
|
declare const root: Root;
|
|
export = root;`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.GoToFile(t, "bar.ts")
|
|
f.VerifyCodeFixNotAvailable(t)
|
|
f.GoToFile(t, "foo.d.ts")
|
|
f.VerifyCodeFixNotAvailable(t)
|
|
}
|