chore: update branch references

This commit is contained in:
Evan You
2022-05-12 08:44:57 +08:00
parent b5b103a736
commit 54753c3401
5 changed files with 17 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
export default {
master: [
main: [
{
sha: 'd1527fbee422c7170e56845e55b49c4fd6de72a7',
node_id:
@@ -273,7 +273,7 @@ export default {
]
}
],
sync: [
'v2-compat': [
{
sha: 'ecf4da822eea97f5db5fa769d39f994755384a4b',
node_id:

View File

@@ -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)