mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +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);
|