UNPKG

scribe-translator

Version:

Lightweight translator for javascript

81 lines (51 loc) 1.51 kB
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Jasmine Spec Runner</title> <link rel="stylesheet" type="text/css" href=".grunt/grunt-contrib-jasmine/jasmine.css"> <script src=".grunt/grunt-contrib-jasmine/require.js"></script> <script src=".grunt/grunt-contrib-jasmine/jasmine.js"></script> <script src=".grunt/grunt-contrib-jasmine/jasmine-html.js"></script> <script src=".grunt/grunt-contrib-jasmine/json2.js"></script> <script src=".grunt/grunt-contrib-jasmine/boot.js"></script> <script> require.onError = function(error) { var message = error.requireType + ': '; if (error.requireType === 'scripterror' || error.requireType === 'notloaded' && error.requireModules) { message += 'Illegal path or script error: ' + '[\'' + error.requireModules.join("', '") + '\']'; } else { message += error.message; } throw Error(message); }; </script> <script> require.config({ "paths": { "scribe": "./lib/scribe" } }); </script> <script> // Delay onLoad function until we are ready var startTests = window.onload; window.onload = null; function launchTest() { require([ ], function(){ require(['spec/scribe.spec.js','.grunt/grunt-contrib-jasmine/reporter.js'], function(){ startTests(); }); } ) } </script> <script> launchTest(); </script> </head> <body> </body> </html>