mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
442 B
22 lines
442 B
|
|
|
|
export const tests = [] |
|
|
|
tests.push(async ({ eq }) => { |
|
// check the CSS stylesheet is linked in the head tag |
|
|
|
return eq.$('head link', { |
|
rel: 'stylesheet', |
|
href: 'http://localhost:9898/select-and-style/select-and-style.css', |
|
}) |
|
}) |
|
|
|
tests.push(async ({ eq }) => { |
|
// check the universal selector has been declared properly |
|
|
|
return eq.css('*', { |
|
margin: '0px', |
|
opacity: '0.85', |
|
boxSizing: 'border-box', |
|
}) |
|
})
|
|
|