1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-09-20 14:27:40 +03:00

Merge branch 'develop' into reverse-proxy-improvement

This commit is contained in:
Louis Grenard 2019-05-25 12:11:47 +08:00 committed by GitHub
commit 23e9070640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1660 additions and 1446 deletions

3102
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -50,7 +50,7 @@
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.17",
"@ffprobe-installer/ffprobe": "^1.0.9",
"@google-cloud/speech": "^2.1.1",
"@google-cloud/speech": "^3.0.0",
"@google-cloud/text-to-speech": "^0.3.0",
"archiver": "^2.1.1",
"async": "^2.6.0",

View File

@ -9,7 +9,7 @@ describe('loader helper', () => {
test('starts spinner', () => {
expect(loader.start()).toBeObject()
jest.runTimersToTime(60000)
expect(setInterval).toHaveBeenCalledTimes(2)
expect(setInterval).toHaveBeenCalledTimes(1)
})
})