Lines Matching refs:testname
6 function reportCanvas(canvas, testname, outputType='canvas') {
8 return _report(b64, outputType, testname);
11 function reportSVG(svg, testname) {
27 _report(b64, 'svg', testname).then(() => {
38 function reportSVGString(svgstr, testname, fillRule='nofill') {
54 return reportSVG(newSVG, testname);
58 function reportPath(path, testname, done) {
67 return reportCanvas(canvas, testname).then(() => {
68 reportSVGString(svgStr, testname).then(() => {
76 function _report(data, outputType, testname) {
86 'test_name': testname,
88 }).then(() => console.log(`Successfully reported ${testname} to gold aggregator`));