We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e2282 commit feaf292Copy full SHA for feaf292
ginkgo_t_dsl.go
@@ -130,6 +130,12 @@ type GinkgoTBWrapper struct {
130
func (g *GinkgoTBWrapper) Cleanup(f func()) {
131
g.GinkgoT.Cleanup(f)
132
}
133
+func (g *GinkgoTBWrapper) Chdir(dir string) {
134
+ g.GinkgoT.Chdir(dir)
135
+}
136
+func (g *GinkgoTBWrapper) Context() context.Context {
137
+ return g.GinkgoT.Context()
138
139
func (g *GinkgoTBWrapper) Error(args ...any) {
140
g.GinkgoT.Error(args...)
141
0 commit comments