trying to figure out travis ci issues

This commit is contained in:
Umed Khudoiberdiev 2017-09-13 22:16:23 +05:00
parent abd109e7fd
commit f470353bf5
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ services:
before_script:
- sudo service mysql stop
- sudo service postgresql stop
- docker-compose up
- docker-compose up -d
- npm run setup:config
after_success:

View File

@ -29,11 +29,11 @@ export class Gulpfile {
// -------------------------------------------------------------------------
/**
* Creates a delay and resolves after 10 seconds.
* Creates a delay and resolves after 30 seconds.
*/
@Task()
wait(cb: Function) {
setTimeout(() => cb(), 10000);
setTimeout(() => cb(), 30000);
}
/**