diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6f78e6a..46496b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: test: strategy: matrix: - node: [18.x] + node: [16.x, 18.x] os: [ubuntu-20.04] runs-on: ${{ matrix.os }} # Service containers to run with `container-job` diff --git a/Gruntfile.js b/Gruntfile.js index 04c72b1..3407b28 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -22,7 +22,7 @@ module.exports = function (grunt) { wait: { server: { options: { - delay: 25 * 1000 + delay: 12 * 1000 } } }, diff --git a/config/test.toml b/config/test.toml index acdedb0..985afc6 100644 --- a/config/test.toml +++ b/config/test.toml @@ -1,17 +1,22 @@ +[api] +port = 8080 +host = "0.0.0.0" +secure = false + [log] - level="error" +level = "silly" [dbs] - # mongodb connection string for the main database - mongo="mongodb://127.0.0.1:27017/wildduck-test" +# mongodb connection string for the main database +mongo = "mongodb://127.0.0.1:27017/wildduck-test" - # redis connection string - redis="redis://127.0.0.1:6379/13" +# redis connection string +redis = "redis://127.0.0.1:6379/13" - dbname="wildduck-test" +dbname = "wildduck-test" [imap] [lmtp] - enabled=true - port=2424 \ No newline at end of file +enabled = true +port = 2424