Browse Source

fix: add missing parenthesis

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5444/head
Pranav C 1 year ago
parent
commit
fd6de77079
  1. 2
      packages/nocodb-nest/src/run/testDocker.ts

2
packages/nocodb-nest/src/run/testDocker.ts

@ -23,7 +23,7 @@ process.env[`DEBUG`] = 'xc*';
(async () => {
await nocobuild(server);
const httpServer = server.listen(process.env.PORT || 8080, async () => {
await new Promise((resolve) => setTimeout(resolve, 2000)
await new Promise((resolve) => setTimeout(resolve, 1000));
if (!(await User.getByEmail('user@nocodb.com'))) {
const response = await axios.post(
`http://localhost:${process.env.PORT || 8080}/api/v1/auth/user/signup`,

Loading…
Cancel
Save