Preparation Code Preparation HTML (this will be inserted in the <body>
of a valid HTML5 document in standards mode) (useful when testing DOM operations or including libraries) <script src ="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" >
</script >
Setup JS var a = [{test : 'bye' }, 'z' , 'a' , 'q' , 'w' , 's' , 'x' , 'c' , 'd' , 'v' , 'e' , 'f' , 't' , 'r' , 'g' , 't' , 'm' , 'y' , 'h' , 't' , 'y' , 'j' , 'i' , 'o' , 'l' , 'f' , 's' , 'd' , 'j' , 'n' , 'm' , 'c' , 'u' , 'i' , 'e' , 'w' , 'h' , 'r' , ',' , 'w' , 'e' , 'n' , 'r' , 'w' , 'n' , 'e' , 'b' , 'f' , '2' , '3' , '4' , '2' , '3' , '4' , 'n' , 'j' , 'm' , 'f' , 'd' , 's' , 'j' , 'd' , 'y' , 'f' , 'g' , '2' , '3' , 'h' , 'f' , 's' , 'j' , 'd' , 'b' , 'm' , 'f' , 'h' , 's' , 'd' , 'h' , 'f' , 'o' , '2' , '3' , 'i' , 'z' , 'a' , 'q' , 'w' , 's' , 'x' , 'c' , 'd' , 'v' , 'e' , 'f' , 't' , 'r' , 'g' , 't' , 'm' , 'y' , 'h' , 't' , 'y' , 'j' , 'i' , 'o' , 'l' , 'f' , 's' , 'd' , 'j' , 'n' , 'm' , 'c' , 'u' , 'i' , 'e' , 'w' , 'h' , 'r' , ',' , 'w' , 'e' , 'n' , 'r' , 'w' , 'n' , 'e' , 'b' , 'f' , '2' , '3' , '4' , '2' , '3' , '4' , 'n' , 'j' , 'm' , 'f' , 'd' , 's' , 'j' , 'd' , 'y' , 'f' , 'g' , '2' , '3' , 'h' , 'f' , 's' , 'j' , 'd' , 'b' , 'm' , 'f' , 'h' , 's' , 'd' , 'h' , 'f' , 'o' , '2' , '3' , 'i' , 'z' , 'a' , 'q' , 'w' , 's' , 'x' , 'c' , 'd' , 'v' , 'e' , 'f' , 't' , 'r' , 'g' , 't' , 'm' , 'y' , 'h' , 't' , 'y' , 'j' , 'i' , 'o' , 'l' , 'f' , 's' , 'd' , 'j' , 'n' , 'm' , 'c' , 'u' , 'i' , 'e' , 'w' , 'h' , 'r' , ',' , 'w' , 'e' , 'n' , 'r' , 'w' , 'n' , 'e' , 'b' , 'f' , '2' , '3' , '4' , '2' , '3' , '4' , 'n' , 'j' , 'm' , 'f' , 'd' , 's' , 'j' , 'd' , 'y' , 'f' , 'g' , '2' , '3' , 'h' , 'f' , 's' , 'j' , 'd' , 'b' , 'm' , 'f' , 'h' , 's' , 'd' , 'h' , 'f' , 'o' , '2' , '3' , 'i' ];
var b = [];
Teardown JS
if (b.length !== a.length ) {
throw {message : "Test failed! b.length !== a.length" };
}
b[0 ].test = 'hi' ;
if (a[0 ].test === 'hi' ) {
}
for (var i = 1 , l = a.length ; i < l; i++) {
if (b[i] !== a[i]) {
throw {message : "Test failed! b array is " + b};
}
}