Enable dependencies automatically with karma

I am working on a large project and they use CDN for various javascript libraries and files (about 50 of them)

Do I need to include all the dependencies in the karma configuration file (karma.conf.js)?

If so, is there an easier way than defining each file? I understand that when they are local, I can use the global "*".

For instance,

files: [
   'https://d...s.cloudfront.net/js/*.js'
]
+4
source share

All Articles