1
0
Эх сурвалжийг харах

feat(testing): Expose underlying NestApplication & NestMicroservice

Michael Bromley 5 жил өмнө
parent
commit
ebf78a2e6a

+ 2 - 2
packages/testing/src/test-server.ts

@@ -15,8 +15,8 @@ import { TestServerOptions } from './types';
  * @docsCategory testing
  */
 export class TestServer {
-    private app: INestApplication;
-    private worker?: INestMicroservice;
+    public app: INestApplication;
+    public worker?: INestMicroservice;
 
     constructor(private vendureConfig: Required<VendureConfig>) {}