checking out new stuff

This commit is contained in:
Kevin Jahns
2015-06-15 14:53:02 +02:00
parent 1b63f5efde
commit 159f37474d
57 changed files with 220 additions and 160705 deletions

30
tests/Buffer.html Normal file
View File

@@ -0,0 +1,30 @@
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Jasmine Spec Runner: repeat</title>
<!-- Jasmine files -->
<link href="../node_modules/jasmine-core/lib/jasmine-core/jasmine.css" rel="stylesheet"/>
<script type="text/javascript" src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
<script type="text/javascript" src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
<!-- CUSTOMIZE: The code to be tested and the tests -->
<script type="text/javascript" src="../build/y.js"></script>
<script type="text/javascript">
(function() {
var jasmineEnv = jasmine.getEnv();
window.onload = function() {
jasmineEnv.execute();
};
})();
</script>
</head>
<body>
</body>
</html>

8
tests/Buffer.js Normal file
View File

@@ -0,0 +1,8 @@
/* @flow */
/*eslint-env node, jasmine */
describe("A suite", function() {
it("contains spec with an expectation", function() {
expect(new Buffer(3)).toBe(true);
});
});