Skip to content

Commit

Permalink
Fix tests for the testing throne
Browse files Browse the repository at this point in the history
  • Loading branch information
cezaraugusto committed Sep 20, 2024
1 parent 2374416 commit e623131
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/new-crypto/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-env/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-less/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-preact/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-react-router/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-react/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-sass/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-typescript/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new-vue/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})
2 changes: 1 addition & 1 deletion examples/new/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ test('should exist a default color value', async ({page}) => {
},
await h1.elementHandle()
)
await test.expect(color).toEqual('rgb(74, 74, 74)')
await test.expect(color).toEqual('rgb(201, 201, 201)')
})

0 comments on commit e623131

Please sign in to comment.