This is an example of using a Collection view with Backbone.
| var Keycloak = require('keycloak-connect'); | |
| var fs = require('fs'); | |
| var express = require('express') | |
| var session = require('express-session'); | |
| var https = require('https'); | |
| var atob = require('atob'); | |
| const path = require('path'); | |
| var cors = require('cors'); | |
| const HOST = 'my-awesome-sauce-app.com'; |
As the web component specs continue to be developed, there has been little information on how to test them.
In particular the /deep/ combinator has been deprecated in Shadow DOM 1.0. This is particularly painful since
most end-to-end testing frameworks rely on elements being discoverable by XPath or calls to querySelector.
Elements in Shadow DOM are selectable by neither.
Webdriver.io has the standard actions by selectors, but also allows browser executable scripts to return an element
This method avoids merge conflicts if you have periodically pulled master into your branch. It also gives you the opportunity to squash into more than 1 commit, or to re-arrange your code into completely different commits (e.g. if you ended up working on three different features but the commits were not consecutive).
Note: You cannot use this method if you intend to open a pull request to merge your feature branch. This method requires committing directly to master.
Switch to the master branch and make sure you are up to date: