|
|
@@ -22,7 +22,7 @@ describe('e2e: commits', () => {
|
|
|
status: 200,
|
|
|
contentType: 'application/json',
|
|
|
headers: { 'Access-Control-Allow-Origin': '*' },
|
|
|
- body: JSON.stringify(mocks[match[1] as 'master' | 'sync'])
|
|
|
+ body: JSON.stringify(mocks[match[1] as 'main' | 'v2-compat'])
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
@@ -31,16 +31,16 @@ describe('e2e: commits', () => {
|
|
|
await page().waitForSelector('li')
|
|
|
expect(await count('input')).toBe(2)
|
|
|
expect(await count('label')).toBe(2)
|
|
|
- expect(await text('label[for="master"]')).toBe('master')
|
|
|
- expect(await text('label[for="sync"]')).toBe('sync')
|
|
|
- expect(await isChecked('#master')).toBe(true)
|
|
|
- expect(await isChecked('#sync')).toBe(false)
|
|
|
- expect(await text('p')).toBe('vuejs/vue@master')
|
|
|
+ expect(await text('label[for="main"]')).toBe('main')
|
|
|
+ expect(await text('label[for="v2-compat"]')).toBe('v2-compat')
|
|
|
+ expect(await isChecked('#main')).toBe(true)
|
|
|
+ expect(await isChecked('#v2-compat')).toBe(false)
|
|
|
+ expect(await text('p')).toBe('vuejs/core@main')
|
|
|
expect(await count('li')).toBe(3)
|
|
|
expect(await count('li .commit')).toBe(3)
|
|
|
expect(await count('li .message')).toBe(3)
|
|
|
- await click('#sync')
|
|
|
- expect(await text('p')).toBe('vuejs/vue@sync')
|
|
|
+ await click('#v2-compat')
|
|
|
+ expect(await text('p')).toBe('vuejs/core@v2-compat')
|
|
|
expect(await count('li')).toBe(3)
|
|
|
expect(await count('li .commit')).toBe(3)
|
|
|
expect(await count('li .message')).toBe(3)
|