Skip to content

Commit

Permalink
Skip flaky e2e tests (#33309)
Browse files Browse the repository at this point in the history
Co-authored-by: Raghu Simha <rsimha@amp.dev>
  • Loading branch information
rileyajones and rsimha committed Mar 19, 2021
1 parent a190819 commit 1bbd550
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ describes.endtoend(
describe('no snap', () => {
const slideWidth = pageWidth * 0.75;

it('should have the correct initial slide positions', async () => {
// TODO(wg-components, #24195): Flaky during CI.
it.skip('should have the correct initial slide positions', async () => {
const slideOne = await getSlide(styles, controller, 0);
const slideTwo = await getSlide(styles, controller, 1);

Expand All @@ -61,7 +62,8 @@ describes.endtoend(
});
});

it('should scroll freely', async () => {
// TODO(wg-components, #24195): Flaky during CI.
it.skip('should scroll freely', async () => {
const el = await getScrollingElement(styles, controller);
const slideOne = await getSlide(styles, controller, 0);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ describes.endtoend(
await controller.switchToShadowRoot(carousel);
});

it('should render correctly', async () => {
// TODO(wg-components, #24195): Flaky during CI.
it.skip('should render correctly', async () => {
const el = await getScrollingElement(styles, controller);

await expect(prop(el, 'scrollWidth')).to.equal(pageWidth * SLIDE_COUNT);
Expand Down

0 comments on commit 1bbd550

Please sign in to comment.