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