This file ( 627B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const should = require('should');
const exec = require('../../../src/task/json2scss/json2scss');
const fs = require('fs');
const { mkdirp } = require('mkdirp')
const grunt = require('grunt');
describe('src/task/json2scss', () => {
it('default', () => {
const folderBuild = 'build/mocha/json2scss/';
if (!fs.existsSync(folderBuild)) {
mkdirp.sync(folderBuild);
}
const config = {
files: [
'test/data/json2scss/*.json'
],
dest: `${folderBuild}json2scss.scss`
};
const result = exec(grunt, config);
});
});