Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Bell <scott@traclabs.com>2021-12-07 00:22:30 +0300
committerGitHub <noreply@github.com>2021-12-07 00:22:30 +0300
commit84e82d3bdaab489eee60e410edf24703688f7a53 (patch)
tree2c74eeed9f3fa51cfaad04b0610d2a3d98f16fc5 /karma.conf.js
parent7b53cad2c5f5e80edb949ecc5e9e5aa4b9c495e7 (diff)
Use Server-Sent Events in the Couch DB adapter (#4427)
* Use SSE instead of chunked HTTP response. Co-authored-by: Joshi <simplyrender@gmail.com>
Diffstat (limited to 'karma.conf.js')
-rw-r--r--karma.conf.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/karma.conf.js b/karma.conf.js
index 32fae7d03..1ef8d86ed 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -52,7 +52,11 @@ module.exports = (config) => {
basePath: '',
frameworks: ['jasmine'],
files: [
- 'indexTest.js'
+ 'indexTest.js',
+ {
+ pattern: 'dist/couchDBChangesFeed.js',
+ included: false
+ }
],
port: 9876,
reporters: reporters,