- Have a reservation form.
- Have a Pending Reservations queue.
- Submit the form adds a pending Reservation with the entered information.
- Make sure you can enter multiple pending reservations.
- Valid the form i.
- Have a Confirmed Reservations time slots section.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Desktop | |
| ------- | |
| chrome | |
| win | |
| 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0 | |
| mac | |
| 14.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0 | |
| firefox | |
| win |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ ] Android Browser (android 1.5) HTC Hero | |
| [ ] Android Browser (android 1.6) Sony Xperia X10 | |
| [ ] Android Browser (android 2.2) Samsung Galaxy S | |
| [ ] Android Browser (android 2.2) HTC Wildfire | |
| [ ] Android Browser (android 2.2) LG Optimus 3D | |
| [ ] Android Browser (android 2.3) Motorola Droid Razr | |
| [ ] Android Browser (android 2.3) Motorola Photon 4G | |
| [ ] Android Browser (android 2.3) Motorola Droid 4 | |
| [ ] Android Browser (android 2.3) Samsung Galaxy S II | |
| [ ] Android Browser (android 2.3) Samsung Galaxy Note |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BrowserStack Available Mobile Browsers | |
| -------------------------------------- | |
| [ ] Android Browser (android 1.5) HTC Hero | |
| [ ] Android Browser (android 1.6) Sony Xperia X10 | |
| [ ] Android Browser (android 2.2) LG Optimus 3D | |
| [ ] Android Browser (android 2.2) HTC Wildfire | |
| [ ] Android Browser (android 2.2) Samsung Galaxy S | |
| [ ] Android Browser (android 2.3) Motorola Droid Razr | |
| [ ] Android Browser (android 2.3) Samsung Galaxy Note | |
| [ ] Android Browser (android 2.3) Samsung Galaxy S II |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ testem launchers | |
| Have 7 launchers available; auto-launch info displayed on the right. | |
| Launcher Type CI Dev | |
| ------------ ------------ -- --- | |
| Chrome browser | |
| Firefox browser | |
| Safari browser | |
| Opera browser | |
| PhantomJS browser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Testem: Continuous Integration Browsers | |
| ======================================= | |
| Check each browser or browser set you want to run during continuous integration. | |
| If you want to pick a combination that's different from what's covered below, you | |
| can manually edit the file browsers.testem.json. The number on the right in | |
| paranthesis () indicates the number of browsers the selection would add to the test | |
| suite. | |
| Local |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function compareBy(){ | |
| var props = arguments | |
| var numProps = arguments.length | |
| return function(one, other){ | |
| for (var i = 0; i < numProps; i++){ | |
| var asc = true | |
| var prop = props[i] | |
| if (prop.charAt(0) === '^') prop = prop.substring(1) | |
| if (prop.charAt(0) === '_'){ | |
| asc = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var isCommonJS = typeof window == "undefined" && typeof exports == "object"; | |
| /** | |
| * Top level namespace for Jasmine, a lightweight JavaScript BDD/spec/testing framework. | |
| * | |
| * @namespace | |
| */ | |
| var jasmine = {}; | |
| if (isCommonJS) exports.jasmine = jasmine; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CanSing = | |
| sing: -> | |
| console.log "I am #{@name} la la la" | |
| include = (ctr, mixin) -> | |
| for key of mixin | |
| ctr.prototype[key] = mixin[key] | |
| class Man |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ember.subscribe("render", { | |
| before: function(name, timestamp, payload) { | |
| }, | |
| after: function(name, timestamp, payload) { | |
| } | |
| }); |