rothko
Version:
what color is your landscape
29 lines (27 loc) • 891 B
HTML
<html>
<head>
<title>BROWSER OPEN TEST</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id = 'mocha'></div>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/gulp-mocha/node_modules/mocha/mocha.js"></script>
<script>
mocha.ui('bdd');
mocha.reporter('html');
var should = chai.should();
</script>
<script src = '../histogram-analyze.js'></script>
<script src = './module_open.test.js'></script>
<script>
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
} else {
mocha.run();
}
</script>
</body>
</html>