mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
0827646695
We're using populist for building the bundle of test modules and their dependencies, so it seems worthwhile for consistency to do the same for the test harness.
23 lines
445 B
HTML
23 lines
445 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="jasmine.css" />
|
|
<style type="text/css">
|
|
iframe {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
left: -1000px;
|
|
top: -1000px;
|
|
}
|
|
</style>
|
|
<script src="jasmine.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
jasmine.getEnv().execute();
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|