Files
n8n-nodes-gwezz-changdunovel/node_modules/indefinite/gulp/open.js
2025-10-26 23:10:15 +08:00

8 lines
180 B
JavaScript

const gulp = require('gulp');
const open = require('opn');
gulp.task('open', (done) => {
open('coverage/lcov-report/index.html', { wait: false }).then(() => done(), done);
});