jest-runner-sasslint

Sass Lint runner for Jest

Usage no npm install needed!

<script type="module">
  import jestRunnerSasslint from 'https://cdn.skypack.dev/jest-runner-sasslint';
</script>

README

jest-runner-sasslint

Sass Lint runner for Jest

Usage

Install

Install jest (Jest 21+) and jest-runner-sasslint

yarn add --dev jest jest-runner-sasslint

Add it to your Jest config

In your package.json

{
  "jest": {
    "runner": "jest-runner-sasslint",
    "displayName": "Sass Lint",
    "testMatch": ["<rootDir>/src/**/*.scss"],
    "moduleFileExtensions": ["scss"]
  }
}

Or in jest.config.js

module.exports = {
  runner: 'jest-runner-sasslint',
  displayName: 'Sass Lint',
  testMatch: ['<rootDir>/src/**/*.scss'],
  moduleFileExtensions: ['scss']
}

Run Jest

yarn jest