This repository has been archived on 2023-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
mightyscape-1.1-deprecated/extensions/fablabchemnitz/papercraft/openjscad/node_modules/@jscad/openscad-openjscad-translator/tests/2d_to_3d_extrusion.js

15 lines
447 B
JavaScript

const check = require('./helpers').check
const filedir = '2d_to_3d_extrusion/'
exports['test Linear Extrude'] = function () {
check(filedir, 'linearExtrudeEx1')
check(filedir, 'linearExtrudeEx2')
check(filedir, 'linearExtrudeEx3')
check(filedir, 'linearExtrudeEx4')
check(filedir, 'linearExtrudeEx5')
check(filedir, 'linearExtrudeEx6')
check(filedir, 'linearExtrudeEx7')
}
if (module === require.main) require('test').run(exports)