v2
- by bensontrent 2/14/202100
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



"use strict";
class Asn {
    constructor(params = {}) {
        this.x = 0;
        this.y = 0;
        this.height = 1;
        this.width = 1;
        Object.assign(this, params);
    }
}
const a = new Asn({ x:3, y: 0, height: 23, width: 1});
console.assert(a.x === 3)

delete caserun single casemove updrag and drop case


ready



"use strict";
class Box {
    constructor(params = {}) {
        var { x = 0, y = 0, height = 1, width = 1 } = params;
        this.x = x;
        this.y = y;
        this.height = height;
        this.width = width;
    }
}
const b = new Box({ x:3, y: 0, height: 23, width: 1});
console.assert(b.x === 3)
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN