Explorar el Código

feat(testing): Expose underlying NestApplication & NestMicroservice

Michael Bromley hace 5 años
padre
commit
ebf78a2e6a
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      packages/testing/src/test-server.ts

+ 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>) {}