Skip to content

Commit 4bffdb2

Browse files
committed
chore(ci): update lighthouse
Signed-off-by: Cory Rylan <crylan@nvidia.com>
1 parent 70e115d commit 4bffdb2

12 files changed

Lines changed: 12 additions & 12 deletions

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

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

projects/core/src/chat-message/chat-message.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ describe('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(14.2);
19+
expect(report.payload.javascript.kb).toBeLessThan(14.3);
2020
});
2121
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ describe('combobox lighthouse report', () => {
2525
expect(report.scores.performance).toBe(100);
2626
expect(report.scores.accessibility).toBe(100);
2727
expect(report.scores.bestPractices).toBe(100);
28-
expect(report.payload.javascript.kb).toBeLessThan(36.2);
28+
expect(report.payload.javascript.kb).toBeLessThan(36.3);
2929
});
3030

3131
test('combobox multi select with large dataset should meet lighthouse benchmarks', async () => {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ describe('datetime lighthouse report', () => {
1919
expect(report.scores.performance).toBe(100);
2020
expect(report.scores.accessibility).toBe(100);
2121
expect(report.scores.bestPractices).toBe(100);
22-
expect(report.payload.javascript.kb).toBeLessThan(25.6);
22+
expect(report.payload.javascript.kb).toBeLessThan(25.7);
2323
});
2424
});

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(133);
18+
expect(report.payload.javascript.requests['index.js'].kb).toBeLessThan(133.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/month/month.test.lighthouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ describe('month lighthouse report', () => {
1919
expect(report.scores.performance).toBe(100);
2020
expect(report.scores.accessibility).toBe(100);
2121
expect(report.scores.bestPractices).toBe(100);
22-
expect(report.payload.javascript.kb).toBeLessThan(25.6);
22+
expect(report.payload.javascript.kb).toBeLessThan(25.7);
2323
});
2424
});

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.4);
20+
expect(report.payload.javascript.kb).toBeLessThan(25.5);
2121
});
2222
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ describe('pagination 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(38.5);
19+
expect(report.payload.javascript.kb).toBeLessThan(38.6);
2020
});
2121
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ describe('password lighthouse report', () => {
1919
expect(report.scores.performance).toBe(100);
2020
expect(report.scores.accessibility).toBe(100);
2121
expect(report.scores.bestPractices).toBe(100);
22-
expect(report.payload.javascript.kb).toBeLessThan(25.7);
22+
expect(report.payload.javascript.kb).toBeLessThan(25.8);
2323
});
2424
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ describe('steps lighthouse report', () => {
2020
expect(report.scores.performance).toBe(100);
2121
expect(report.scores.accessibility).toBe(100);
2222
expect(report.scores.bestPractices).toBe(100);
23-
expect(report.payload.javascript.kb).toBeLessThan(23.8);
23+
expect(report.payload.javascript.kb).toBeLessThan(23.9);
2424
});
2525
});

0 commit comments

Comments
 (0)