Files
azuredatastudio/test/electron/renderer.html

35 lines
741 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>VSCode Tests</title>
<link href="../../node_modules/mocha/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="../../node_modules/mocha/mocha.js"></script>
<script>
// !!! DO NOT CHANGE !!!
// Our unit tests may run in environments without
// display (e.g. from builds) and tests may by
// accident bring up native dialogs or even open
// windows. This we cannot allow as it may crash
// the test run.
// !!! DO NOT CHANGE !!!
window.open = function () {return null;};
window.alert = function () {}
window.confirm = function () {}
mocha.setup({
ui: 'tdd',
timeout: 5000
});
require('./renderer');
</script>
</body>
</html>