HopefulLlama/UnitTestSCAD

View on GitHub
src/file/TwoDModuleFile.js

Summary

Maintainability
A
1 hr
Test Coverage
const File = require('./File');

const svgFile = 'UnitTestSCAD_48967_TEMP_DELETE-ME_TWO_D.svg';

module.exports = {
  execute(header, setUpText, testText) {
    return File.execute({
      header,
      setUpText,
      testText,
    }, svgFile).file;
  }
};