UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

20 lines (15 loc) 418 B
'use strict'; const expect = require('chai').expect; const Login = require('./login'); const Serverless = require('../../Serverless'); describe('Login', () => { let login; let serverless; beforeEach(() => { serverless = new Serverless(); login = new Login(serverless); }); describe('#constructor()', () => { it('should have commands', () => expect(login.commands).to.be.not.empty); }); });