mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-28 10:49:48 -05:00
added 3rd iframe
This commit is contained in:
@@ -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>
|
||||
@@ -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");
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user