Giter VIP home page Giter VIP logo

Comments (14)

katrotz avatar katrotz commented on May 18, 2024

+1

from karma-jspm.

tinkertrain avatar tinkertrain commented on May 18, 2024

+1

from karma-jspm.

djindjic avatar djindjic commented on May 18, 2024

+1

from karma-jspm.

andreasgrimm avatar andreasgrimm commented on May 18, 2024

+1

from karma-jspm.

andreasgrimm avatar andreasgrimm commented on May 18, 2024

@tauren I can't get coverage reports working at all when trying to use on-the-fly transpilation (which is what karma-jspm is doing here I guess). I see a lot of other examples where coverage runs against already transpiled sources though (where transpiling happens during karma-preprocessing).

I thought it might be helpful to see your complete karma config in case I'm missing something here (like maybe you are using Chrome instead of PhantomJS or something like that).

from karma-jspm.

robcleghorn avatar robcleghorn commented on May 18, 2024

+1

from karma-jspm.

Bretto avatar Bretto commented on May 18, 2024

+1 I can't get coverage reports working

from karma-jspm.

vincentbriglia avatar vincentbriglia commented on May 18, 2024

+1 getting some feedback on whether this project is still active would be great

from karma-jspm.

maxwellpeterson-wf avatar maxwellpeterson-wf commented on May 18, 2024

Code coverage using karma-coverage should work as expected. Be sure to include the preprocessor configuration in karma.conf.js:

preprocessors = {
    'build/src/**/*.js': ['coverage']
};
reporters = ['progress', 'coverage'];

Where build/src/ is the location from where your source files are being required/loaded.

The original issue that @tauren is indeed a valid issue, though. If the test runner does not end up loading some of your source, it will not be included in the coverage report. If this is a problem for you I would suggest trying to put all source and test files in jspm.loadFiles... and if that doesn't work for you I'd create a dummy test file that simply requires all the source files that you want to test.

from karma-jspm.

djindjic avatar djindjic commented on May 18, 2024

It seems like coverage doesn't include transpiler over karma-jspm into my tests execution if I have coverage configuration. I am getting:

ERROR [preprocessor.coverage]: Line 1: Unexpected reserved word

Line 1 is starting with 'import'. Here is my karma.config.
Could you guys please take a look @maxwellpeterson-wf @tauren?

from karma-jspm.

twalker avatar twalker commented on May 18, 2024

@djindjic ,

In case it's useful, I was getting the same error. I believe it was due to my serveFiles files not being transpiled.
As a workaround, I added the karma-babel-preprocessor to transpile before coverage:

/* related karma.conf.js fragment */

frameworks: ['jspm', 'jasmine'],

jspm: {
  loadFiles: ['app/**/*spec.js'],
  serveFiles: ['app/**/*.js', 'app/**/*.html']
},

files: [/* defers to async loading by jspm framework */],

preprocessors: {
  'app/**/!(*spec).js': ['babel', 'coverage'],
},

// transpile with babel since the coverage reporter throws error on ES6 syntax
babelPreprocessor: {
  options: {
    modules: 'system'
  }
},
reporters: ['progress', 'coverage'],

from karma-jspm.

martinmicunda avatar martinmicunda commented on May 18, 2024

has anybody got running the coverage? @djindjic I tried run the preprocessor for coverage as you have suggested but all my test are failing

from karma-jspm.

jgodi avatar jgodi commented on May 18, 2024

I just did what @twalker suggested and mine works perfectly. Thanks!

from karma-jspm.

tannerlyons avatar tannerlyons commented on May 18, 2024

In case anyone ends up here wondering how to include all source files (@tauren's original question), karma-coverage added this parameter recently (last few months) :

    coverageReporter: {
      type : 'html',
      dir : 'coverage/',
      includeAllSources : true // <-- This aptly named param brings in all sources.
    },

Changeset: karma-runner/karma-coverage#131

from karma-jspm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.