chore: make crash-reporter specs not use URL module (#16840)

This commit is contained in:
Samuel Attard 2019-02-08 13:22:07 -08:00 коммит произвёл GitHub
Родитель ccf46a57bc
Коммит 10607f7e86
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 4 удалений

2
spec/fixtures/api/crash-restart.html поставляемый
Просмотреть файл

@ -2,7 +2,7 @@
<body>
<script type="text/javascript" charset="utf-8">
const {port} = require('url').parse(window.location.href, true).query
const port = (new URLSearchParams(location.search)).get('port')
const {crashReporter, ipcRenderer} = require('electron')
crashReporter.start({

6
spec/fixtures/api/crash.html поставляемый
Просмотреть файл

@ -2,9 +2,9 @@
<body>
<script type="text/javascript" charset="utf-8">
const url = require('url').parse(window.location.href, true);
const uploadToServer = !url.query.skipUpload;
const port = url.query.port;
const query = new URLSearchParams(location.search)
const port = query.get('port')
const uploadToServer = !query.has('skipUpload')
const {crashReporter, ipcRenderer} = require('electron');
crashReporter.start({