siesta-lite
Version:
Stress-free JavaScript unit testing and functional testing tool, works in NodeJS and browsers
31 lines (20 loc) • 550 B
JavaScript
/*
Siesta 5.6.1
Copyright(c) 2009-2022 Bryntum AB
https://bryntum.com/contact
https://bryntum.com/products/siesta/license
*/
Class('Siesta.Result.Summary', {
isa : Siesta.Result,
has : {
isFailed : false
},
methods : {
// summary should belong only to the top level Siesta.Result.SubTest instance
getTest : function () {
return this.parent.test
},
toString : function () {
}
}
});