Socket
Socket
Sign inDemoInstall

chai-jscodeshift

Package Overview
Dependencies
235
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    chai-jscodeshift

Chai assertion utilities for writing JSCodeShift Codemods.


Version published
Weekly downloads
6
increased by500%
Maintainers
3
Install size
67.8 kB
Created
Weekly downloads
 

Readme

Source

chai-jscodeshift

chai-jscodeshift provides a custom assertion for jscodeshift to check whether a given input fixture matches an output fixture after being transformed by the transformer under test.

Setup

import chai from 'chai';
import chaiJSCodeShift from 'chai-jscodeshift';
chai.use(chaiJSCodeShift());

Usage

import myTransform from '../src/my-transform';

describe('myTransform', () => {
  it('transforms properly', () => {
    expect(myTransform).to.transform('my-fixture');

    // or

    assert.transforms(myTransform, 'my-fixture');
  });
});

Customization

By default, this plugin will look for fixtures in the fixtures in the working directory. You will probably want to customize this by setting the directory in which your fixtures appear:

import path from 'path';

chai.use(chaiJSCodeShift({
  fixtureDirectory: path.join(__dirname, 'fixtures')
}));

When you declare that you want a transformer to transform a particular fixture, this plugin will look for a file named <fixtureName>.input.js, relative to the fixtureDirectory declared above. It will read this file, transform the contents using your transformer, and compare it against a file named <fixtureName>.output.js relative to the fixture directory. You can customize either of these paths by passing a custom inputFixturePath or outputFixturePath in your options (both of which take two arguments, the fixture name and the root of the fixture directory):

chai.use(chaiJSCodeShift({
  fixtureDirectory: path.join(__dirname, 'fixtures'),
  inputFixturePath(fixtureName, fixtureDirectory) {
    return path.join(fixtureDirectory, 'input', `${fixtureName}.js`);
  },
  inputFixturePath(fixtureName, fixtureDirectory) {
    return path.join(fixtureDirectory, 'output', `${fixtureName}.js`);
  },
}));

You can also set custom options that will be passed as the third argument to your transformer on every call using the transformOptions configuration option:

chai.use(chaiJSCodeShift({
  transformOptions: {
    printOptions: {space: 'single'},
  },
}));

Keywords

FAQs

Last updated on 13 Oct 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc