|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1441 |
ariadna |
1 |
/* eslint-disable camelcase */
|
|
|
2 |
|
|
|
3 |
'use strict'
|
|
|
4 |
|
|
|
5 |
const path = require('node:path')
|
|
|
6 |
|
|
|
7 |
module.exports = {
|
|
|
8 |
spec_dir: 'scss',
|
|
|
9 |
// Make Jasmine look for `.test.scss` files
|
|
|
10 |
spec_files: ['**/*.{test,spec}.scss'],
|
|
|
11 |
// Compile them into JS scripts running `sass-true`
|
|
|
12 |
requires: [path.join(__dirname, 'sass-true/register')],
|
|
|
13 |
// Ensure we use `require` so that the require.extensions works
|
|
|
14 |
// as `import` completely bypasses it
|
|
|
15 |
jsLoader: 'require'
|
|
|
16 |
}
|