summaryrefslogtreecommitdiffstats
path: root/scss/tests/jasmine.js
blob: 25d838c97a4f9141d4ddef7a201025ad9e631078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* eslint-disable camelcase */

'use strict'

const path = require('node:path')

module.exports = {
  spec_dir: 'scss',
  // Make Jasmine look for `.test.scss` files
  spec_files: ['**/*.{test,spec}.scss'],
  // Compile them into JS scripts running `sass-true`
  requires: [path.join(__dirname, 'sass-true/register')],
  // Ensure we use `require` so that the require.extensions works
  // as `import` completely bypasses it
  jsLoader: 'require'
}