Skip to content

Commit cd593ca

Browse files
Sophie Saskinmbroadst
Sophie Saskin
authored andcommitted
feat(karma): test bson in the browser
* revert back to previous version of browser testing * should run on travis now * package lock * updated package.json to not need build * remove buffers necessary for wrong package.json version
1 parent ae8afd1 commit cd593ca

17 files changed

+5332
-1241
lines changed

.travis.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ sudo: false
22
dist: trusty
33

44
language: node_js
5+
node_js:
6+
- 4
7+
- 6
8+
- 8
9+
- 10
510

611
cache:
712
yarn: true
813
directories:
914
- node_modules
1015

11-
node_js:
12-
- 4
13-
- 6
14-
- 8
15-
- 10
16+
script:
17+
- npm run-script test-node
18+
- if [[ $(node --version) != v4* ]] ; then npm run-script test-browser; fi

karma.conf.js

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
'use strict';
2+
3+
const scenariosPlugin = require('./tools/scenarios-plugin');
4+
const jsonPlugin = require('rollup-plugin-json');
5+
const nodeGlobals = require('rollup-plugin-node-globals');
6+
const nodeBuiltins = require('rollup-plugin-node-builtins');
7+
const commonjs = require('rollup-plugin-commonjs');
8+
const nodeResolve = require('rollup-plugin-node-resolve');
9+
10+
const rollupPlugins = [
11+
scenariosPlugin(),
12+
nodeResolve({
13+
browser: true,
14+
preferBuiltins: false
15+
}),
16+
commonjs({
17+
namedExports: {
18+
'node_modules/buffer/index.js': ['isBuffer']
19+
}
20+
}),
21+
nodeBuiltins(),
22+
nodeGlobals(),
23+
jsonPlugin()
24+
];
25+
26+
const rollupConfig = {
27+
plugins: rollupPlugins,
28+
output: {
29+
format: 'iife',
30+
name: 'BSONtest',
31+
exports: 'named'
32+
}
33+
};
34+
35+
const onwarn = warning => {
36+
if (warning.code === 'CIRCULAR_DEPENDENCY' || warning.code === 'EVAL') return;
37+
console.warn(warning.toString());
38+
};
39+
40+
rollupConfig.onwarn = onwarn;
41+
42+
module.exports = function(config) {
43+
config.set({
44+
basePath: '',
45+
frameworks: ['mocha'],
46+
reporters: ['mocha'],
47+
files: [{ pattern: 'test/node/!(bson_node_only_tests).js', watched: false }],
48+
preprocessors: {
49+
'test/node/!(bson_node_only_tests).js': 'rollup'
50+
},
51+
rollupPreprocessor: rollupConfig,
52+
port: 9876,
53+
colors: true,
54+
logLevel: config.LOG_INFO,
55+
autoWatch: true,
56+
browsers: ['ChromeHeadlessNoSandbox'],
57+
customLaunchers: {
58+
ChromeHeadlessNoSandbox: {
59+
base: 'ChromeHeadless',
60+
flags: ['--no-sandbox']
61+
}
62+
},
63+
singleRun: true,
64+
concurrency: Infinity
65+
});
66+
};

0 commit comments

Comments
 (0)