UNPKG

@litexa/core

Version:

Litexa, a programming language for writing Alexa skills

17 lines (14 loc) 516 B
/* * ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 * ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ 'use strict'; Test.expect("stuff to work", function() { Test.equal(typeof (todayName()), 'string'); Test.check(function() { return addNumbers(1, 2, 3) === 6; }); return Test.report(`today is ${todayName()}`); });