We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b5c7a commit a40e6f3Copy full SHA for a40e6f3
2 files changed
example/app.ts
@@ -7,6 +7,7 @@ export class Application implements NestApplication {
7
start() {
8
this.app.listen(3030, () => {
9
console.log("Application listen on port:", 3030);
10
+ this.app.close();
11
});
12
}
13
karma.conf.js
@@ -14,16 +14,7 @@ module.exports = function (config) {
14
'tests.webpack.js': [ 'webpack' ]
15
},
16
webpack: webpackConfig,
17
- /*customLaunchers: {
18
- Chrome_travis_ci: {
19
- base: 'Chrome',
20
- flags: ['--no-sandbox']
21
- }
22
- },*/
23
singleRun: true
24
25
26
- if(process.env.TRAVIS){
27
- config.browsers = ['Chrome_travis_ci'];
28
29
};
0 commit comments