core: bump version to 3.0 alpha (#5082)

This commit is contained in:
Paul Irish 2018-05-02 11:57:29 -07:00 коммит произвёл GitHub
Родитель d7fdb1df79
Коммит f01184d4a5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -161,7 +161,7 @@ describe('ReportRenderer', () => {
it('renders a footer', () => {
const footer = renderer._renderReportFooter(sampleResults);
const footerContent = footer.querySelector('.lh-footer').textContent;
assert.ok(footerContent.includes('Generated by Lighthouse 2'), 'includes lh version');
assert.ok(/Generated by Lighthouse \d/.test(footerContent), 'includes lh version');
assert.ok(footerContent.match(TIMESTAMP_REGEX), 'includes timestamp');
});
});

Просмотреть файл

@ -1,6 +1,6 @@
{
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3358.0 Safari/537.36",
"lighthouseVersion": "2.9.1",
"lighthouseVersion": "3.0.0-alpha",
"fetchedAt": "2018-03-13T00:55:45.840Z",
"generatedTime": "Please use .fetchedAt instead",
"initialUrl": "http://localhost/dobetterweb/dbw_tester.html",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "lighthouse",
"version": "2.9.1",
"version": "3.0.0-alpha",
"description": "Lighthouse",
"main": "./lighthouse-core/index.js",
"bin": {