added 3rd iframe

This commit is contained in:
Brian Mann
2014-06-15 17:50:50 -04:00
parent 11ae260789
commit d3fbe999e6
2 changed files with 23 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>Iframe Baz</title>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/chai.js"></script>
<script type="text/javascript" src="/js/sinon.js"></script>
<script type="text/javascript" src="/js/iframe.js"></script>
<script type="text/javascript" src="/specs/baz_spec.js"></script>
</head>
<body>
<div>BAZ SPEC</div>
</body>
</html>
+7
View File
@@ -0,0 +1,7 @@
describe("Baz Spec", function(){
console.warn("baz spec")
it("can baz", function(){
console.warn("can baz");
expect("baz").to.eq("baz");
});
});