Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1fb184

Browse files
committed
chore(ci): update lighthouse
Signed-off-by: Cory Rylan <[email protected]>
1 parent 69e3ed5 commit f1fb184

15 files changed

Lines changed: 15 additions & 15 deletions

projects/core/src/alert/alert.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ describe('alert lighthouse report', () => {
3333
expect(report.scores.performance).toBe(100);
3434
expect(report.scores.accessibility).toBe(100);
3535
expect(report.scores.bestPractices).toBe(100);
36-
expect(report.payload.javascript.kb).toBeLessThan(23.2);
36+
expect(report.payload.javascript.kb).toBeLessThan(23.3);
3737
});
3838
});

projects/core/src/copy-button/copy-button.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ describe('copy-button lighthouse report', () => {
1616
expect(report.scores.performance).toBe(100);
1717
expect(report.scores.accessibility).toBe(100);
1818
expect(report.scores.bestPractices).toBe(100);
19-
expect(report.payload.javascript.kb).toBeLessThan(25.9);
19+
expect(report.payload.javascript.kb).toBeLessThan(26);
2020
});
2121
});

projects/core/src/dialog/dialog.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ describe('dialog lighthouse report', () => {
2525
expect(report.scores.performance).toBeGreaterThan(97); // bfcache
2626
expect(report.scores.accessibility).toBe(100);
2727
expect(report.scores.bestPractices).toBe(100);
28-
expect(report.payload.javascript.kb).toBeLessThan(24.6);
28+
expect(report.payload.javascript.kb).toBeLessThan(24.8);
2929
});
3030
});

projects/core/src/drawer/drawer.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ describe('drawer lighthouse report', () => {
1818
expect(report.scores.performance).toBeGreaterThan(98); // bfcache
1919
expect(report.scores.accessibility).toBe(100);
2020
expect(report.scores.bestPractices).toBe(100);
21-
expect(report.payload.javascript.kb).toBeLessThan(25.1);
21+
expect(report.payload.javascript.kb).toBeLessThan(25.3);
2222
});
2323
});

projects/core/src/dropdown-group/dropdown-group.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ describe('dropdown-group lighthouse report', () => {
2929
expect(report.scores.performance).toBe(100);
3030
expect(report.scores.accessibility).toBe(100);
3131
expect(report.scores.bestPractices).toBe(100);
32-
expect(report.payload.javascript.kb).toBeLessThan(24.6);
32+
expect(report.payload.javascript.kb).toBeLessThan(24.7);
3333
});
3434
});

projects/core/src/dropzone/dropzone.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ describe('dropzone lighthouse report', () => {
1616
expect(report.scores.performance).toBe(100);
1717
expect(report.scores.accessibility).toBe(100);
1818
expect(report.scores.bestPractices).toBe(100);
19-
expect(report.payload.javascript.kb).toBeLessThan(18.9);
19+
expect(report.payload.javascript.kb).toBeLessThan(19);
2020
});
2121
});

projects/core/src/icon-button/icon-button.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ describe('icon-button lighthouse report', () => {
1616
expect(report.scores.performance).toBe(100);
1717
expect(report.scores.accessibility).toBe(100);
1818
expect(report.scores.bestPractices).toBe(100);
19-
expect(report.payload.javascript.kb).toBeLessThan(19.4);
19+
expect(report.payload.javascript.kb).toBeLessThan(19.5);
2020
});
2121
});

projects/core/src/index.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('lighthouse report', () => {
1515
expect(report.scores.performance).toBe(100);
1616
expect(report.scores.accessibility).toBe(100);
1717
expect(report.scores.bestPractices).toBe(100);
18-
expect(report.payload.javascript.requests['index.js'].kb).toBeLessThan(130);
18+
expect(report.payload.javascript.requests['index.js'].kb).toBeLessThan(130.1);
1919

2020
// if sudden drop in size, check vite bundle config and bundle demo to ensure side effects are properly preserved
2121
expect(report.payload.javascript.requests['index.js'].kb).toBeGreaterThan(120);

projects/core/src/notification/notification.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ describe('notification lighthouse report', () => {
1717
expect(report.scores.performance).toBe(100);
1818
expect(report.scores.accessibility).toBe(100);
1919
expect(report.scores.bestPractices).toBe(100);
20-
expect(report.payload.javascript.kb).toBeLessThan(25);
20+
expect(report.payload.javascript.kb).toBeLessThan(25.1);
2121
});
2222
});

projects/core/src/page/page.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ describe('page lighthouse report', () => {
2222
expect(report.scores.performance).toBe(100);
2323
expect(report.scores.accessibility).toBe(100);
2424
expect(report.scores.bestPractices).toBe(100);
25-
expect(report.payload.javascript.kb).toBeLessThan(22.5);
25+
expect(report.payload.javascript.kb).toBeLessThan(22.6);
2626
});
2727
});

0 commit comments

Comments
 (0)