Git Product home page Git Product logo

Comments (3)

coreyfarrell avatar coreyfarrell commented on September 27, 2024

Just to make sure I understand what you are saying, can I assume that your above test assumes that process.cwd() === '/project'?

const assert = require('assert');
const path = require('path');
const testExclude = require('test-exclude');

function failingTest() {
  const exclude = testExclude({
    exclude: [path.resolve('file')]
  });
  assert.equal(exclude.shouldInstrument('./file'), false);
}

function passingTest() {
  const exclude = testExclude({
    exclude: [path.resolve('file')],
    relativePath: false
  });
  assert.equal(exclude.shouldInstrument(path.resolve('./file')), false);
}

// a call to `failingTest()` will assert, a call to `passingTest()` will not.

There are issues mixing of relative and absolute paths, I'm not aware of anything that uses relativePath: false outside test-exclude's own tests.

from test-exclude.

stevenvachon avatar stevenvachon commented on September 27, 2024

Correct, cwd is /project.

relativePath: false is required to make it work, or will that make relative paths fail ("mixing") ?

from test-exclude.

coreyfarrell avatar coreyfarrell commented on September 27, 2024

Mixing does not work as of now. The only correct way (as of now) to exclude ./file is exclude: ["file"].

exclude.shouldInstrument() actually expects an absolute path to be provided for the first argument. If relativePath: true it converts to a relative path for comparison with the include/exclude options.

It's a tough situation, we have to be really careful with logic changes to test-exclude (4.8 million downloads last week, lots of users dependent on the current logic). By far the nominal use is relativePath: true.

Side note: it appears that the README for test-exclude is incorrect as the examples show passing relative filenames to shouldInstrument. I've opened #33 regarding the need to correct/improve the documentation.

from test-exclude.

Related Issues (15)

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.