We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
it
1 parent 4cc0b83 commit 2c582c8Copy full SHA for 2c582c8
1 file changed
integration/microservices/e2e/sum-kafka.spec.ts
@@ -9,7 +9,7 @@ describe('Kafka transport', () => {
9
let server;
10
let app: INestApplication;
11
12
- before(`Starting Kafka app`, async () => {
+ it(`Start Kafka app`, async () => {
13
const module = await Test.createTestingModule({
14
controllers: [KafkaController],
15
}).compile();
@@ -27,7 +27,7 @@ describe('Kafka transport', () => {
27
});
28
await app.startAllMicroservicesAsync();
29
await app.init();
30
- });
+ }).timeout(30000);
31
32
it(`/POST (async command sum)`, done => {
33
request(server)
@@ -56,4 +56,4 @@ describe('Kafka transport', () => {
56
after(`Stopping Kafka app`, async () => {
57
await app.close();
58
59
-});
+}).timeout(30000);
0 commit comments