File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ const karmaBase = require('../../config/karma.base');
19
19
const { argv } = require ( 'yargs' ) ;
20
20
const { existsSync } = require ( 'fs' ) ;
21
21
22
+ const files = [ `src/**/*.test.ts` ] ;
23
+
22
24
// Validate that the file that defines the Firebase config to be used in the integration tests exists.
23
25
if ( argv . integration ) {
24
26
if ( ! existsSync ( 'integration/firebase-config.ts' ) ) {
@@ -42,10 +44,9 @@ module.exports = function (config) {
42
44
// frameworks to use
43
45
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
44
46
frameworks : [ 'mocha' ]
45
-
46
47
} ;
47
48
48
- config . client . args . push ( process . env . VERTEXAI_INTEGRATION_FIREBASE_CONFIG_JSON ) ;
49
-
50
49
config . set ( karmaConfig ) ;
51
50
} ;
51
+
52
+ module . exports . files = files ;
You can’t perform that action at this time.
0 commit comments