🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

blueflag-test

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blueflag-test

An oppinionated set of linting and testing tools

0.23.0
latest
72

Supply Chain Security

100

Vulnerability

83

Quality

79

Maintenance

100

License

Version published
Weekly downloads
123
-20.65%
Maintainers
2
Weekly downloads
 
Created

blueflag-test

Installation

yarn add --dev blueflag-test

package.json

{
    "scripts": {
        "flow": "blueflag-test flow",
        "flow-coverage": "blueflag-test flow-coverage",
        "lint": "blueflag-test lint",
        "test": "yarn jest",
        "test-all": "yarn lint && yarn flow && yarn test && yarn flow-coverage"
    }
}

jest.config.js

blueflag-test pre loads jest with support for [enzyme] with the jest-enzyme package. This loads enzyme-adapter-16 into each test file, gives you the shallow, mount and render globals, and extends expect with some handy enzyme matchers.

module.exports = {
    preset 'blueflag-test',
    ...config overrides
}

.flowconfig

You might need to shim some flow types

  • If you are using immutable 3.8.x
  • If you are testing with any enzyme globals
[libs]
./node_modules/blueflag-test/flow-typed-shims/immutable-3.8.x/
./node_modules/blueflag-test/flow-typed-shims/jest-enzyme-6.0.x/

[ignore]
<PROJECT_ROOT>/node_modules/immutable

FAQs

Package last updated on 14 Aug 2019

Did you know?

Socket

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