Ejemplo n.º 1
0
test('Target run() is function', () => {
    const target = new Target();
    assert.is_fun(target.run);
});
Ejemplo n.º 2
0
test('Target task() is function', () => {
    const target = new Target();
    assert.is_fun(target.task);
});
Ejemplo n.º 3
0
test('Target is function', () => {
    assert.is_fun(Target);
});
Ejemplo n.º 4
0
test('Suite defaults() is function', () => {
    const suite = new Suite();
    assert.is_fun(suite.defaults);
});
Ejemplo n.º 5
0
test('Suite include() is function', () => {
    const suite = new Suite();
    assert.is_fun(suite.include);
});
Ejemplo n.º 6
0
test('Suite is function', () => {
    assert.is_fun(Suite);
});
Ejemplo n.º 7
0
test('Suite target() is function', () => {
    const suite = new Suite();
    assert.is_fun(suite.target);
});
Ejemplo n.º 8
0
test('Suite run() is function', () => {
    const suite = new Suite();
    assert.is_fun(suite.run);
});
Ejemplo n.º 9
0
test('Mkr run() is function', () => {
    assert.is_fun(Mkr.run);
});
Ejemplo n.º 10
0
test('Mkr cli() is function', () => {
    assert.is_fun(Mkr.cli);
});