@litexa/core
Version:
Litexa, a programming language for writing Alexa skills
29 lines (26 loc) • 827 B
JavaScript
/*
* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
import {assert} from 'chai';
import {spy} from 'sinon';
import {Time} from '@lib/services/time.service';
describe('Time', () => {
let mockDate;
beforeEach(() => {
mockDate = {
getDay: () => {
return 0;
}
};
});
describe('#serverTimeGetDay', () => {
it('returns the day', () => {
const dateSpy = spy(mockDate, 'getDay');
Time.serverTimeGetDay(mockDate);
assert(dateSpy.calledOnce, 'got the day');
});
});
});