mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-23 08:50:20 -05:00
79 lines
1.8 KiB
HTML
79 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test .only Fixture</title>
|
|
|
|
<script type="text/javascript">
|
|
window.mocha = new parent.Mocha({
|
|
reporter: function(){}
|
|
})
|
|
</script>
|
|
|
|
<script type="text/javascript" src="/lib/public/js/iframe.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
// before(function(){
|
|
// debugger
|
|
// console.log("root beforeAll")
|
|
// })
|
|
|
|
// after(function(){
|
|
// debugger
|
|
// })
|
|
|
|
describe("1suite [s01]", function(){
|
|
// before(function(){
|
|
// console.log("suite before")
|
|
// })
|
|
|
|
// beforeEach(function(){
|
|
// console.log("suite beforeEach")
|
|
// })
|
|
|
|
// after(function(){
|
|
// debugger
|
|
// })
|
|
|
|
it("test [t01]", function(){})
|
|
it("test [t02]", function(){})
|
|
it("test [t03]", function(){})
|
|
|
|
context("2nested suite [s02]", function(){
|
|
// afterEach(function(){
|
|
// debugger
|
|
// })
|
|
|
|
// after(function(){
|
|
// debugger
|
|
// })
|
|
|
|
it("test [t04]", function(){})
|
|
|
|
context("3nested suite [s03]", function(){
|
|
it("test [t05]", function(){})
|
|
it("test [t06]", function(){})
|
|
})
|
|
|
|
context("4nested suite [s04]", function(){
|
|
it("test [t07]", function(){})
|
|
it("test [t08]", function(){})
|
|
|
|
context("5nested nested suite [s05]", function(){
|
|
it("test [t09]", function(){})
|
|
it("test [t10]", function(){})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
describe("6suite [s06]", function(){
|
|
// beforeEach(function(){
|
|
// console.log("suite beforeEach")
|
|
// })
|
|
|
|
it("test [t11]", function(){})
|
|
})
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html> |