mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const runServerless = require('@serverless/test/run-serverless');
|
|
|
|
const serverlessPath = path.join(__dirname, '../../');
|
|
|
|
module.exports = options => runServerless(serverlessPath, options);
|