(element)
| 3 | import {createFixtureIframe} from '#testing/iframe'; |
| 4 | |
| 5 | function checkElementUpgrade(element) { |
| 6 | expect(element).to.have.class('i-amphtml-element'); |
| 7 | expect(element).to.have.class('i-amphtml-layout-responsive'); |
| 8 | expect(element).to.have.class('i-amphtml-layout-size-defined'); |
| 9 | expect(element).to.not.have.class('amp-notbuilt'); |
| 10 | expect(element).to.not.have.class('i-amphtml-notbuilt'); |
| 11 | expect(element).to.not.have.class('amp-unresolved'); |
| 12 | expect(element).to.not.have.class('i-amphtml-unresolved'); |
| 13 | } |
| 14 | |
| 15 | describes.sandboxed |
| 16 | .configure() |
no test coverage detected