| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 1× 1× 1× 1× 1× | "use strict";
var tester_1 = require('immutable-class/build/tester');
var stage_1 = require('./stage');
describe('Stage', function () {
it('is an immutable class', function () {
tester_1.testImmutableClass(stage_1.Stage, [
{
x: 10,
y: 5,
height: 2,
width: 2
},
{
x: 10,
y: 500,
height: 2,
width: 2
},
{
x: 10,
y: 5,
height: 3,
width: 2
}
]);
});
});
|