We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc073cf commit 7267177Copy full SHA for 7267177
bin/start.sh
@@ -13,7 +13,6 @@
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15
16
-source .env
17
source ./bin/includes.sh
18
19
printf "Starting up containers ..."
tests/e2e/config/bootstrap.js
@@ -130,7 +130,7 @@ function observeConsoleLogging() {
130
async function removeBeforeunloadEvents() {
131
await page.setRequestInterception( true );
132
await page.on( 'request', async request => {
133
- if ( request.url().includes( 'dist/editor.js' ) ) {
+ if ( request.url().match( /dist\/editor(\.min)?\.js/ ) ) {
134
fetch( request.url() )
135
.then( response => response.text() )
136
.then( response => {
0 commit comments