We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e613f commit 8613899Copy full SHA for 8613899
1 file changed
test/e2e/interactions.spec.ts
@@ -67,7 +67,8 @@ test.describe('Compare Page', () => {
67
68
const body = await response.json()
69
// The API should return a valid install size object, not an error
70
- expect(body).toHaveProperty('installSize')
+ expect(body).toHaveProperty('selfSize')
71
+ expect(body).toHaveProperty('totalSize')
72
})
73
74
test('loads analysis data for a scoped package', async ({ page, goto }) => {
@@ -86,6 +87,7 @@ test.describe('Compare Page', () => {
86
87
88
89
expect(body).toHaveProperty('package', '@nuxt/kit')
90
+ expect(body).toHaveProperty('moduleFormat', 'esm')
91
92
93
test('compare grid shows data (not all dashes) for a scoped package', async ({ page, goto }) => {
0 commit comments