This commit is contained in:
Ilya Kantor 2017-03-21 14:41:49 +03:00
parent 4ae129054e
commit ab9ab64bd5
476 changed files with 3370 additions and 532 deletions

View file

@ -1,6 +1,6 @@
describe("multiplyNumeric", function() {
it("multiplies all numeric properties by 2", function() {
var menu = {
let menu = {
width: 200,
height: 300,
title: "My menu"
@ -14,5 +14,5 @@ describe("multiplyNumeric", function() {
it("returns nothing", function() {
assert.isUndefined( multiplyNumeric({}) );
});
});
});