Skip tests that touch vertical-collection to fix random Travis failures (#938)

refs https://github.com/TryGhost/Ghost/issues/8805
- `{{vertical-collection}}` causes async issues and random failures in our tests
- we can't upgrade to the latest version which includes a test wait helper because it's buggy in Firefox
- skip the tests for now
This commit is contained in:
Kevin Ansfield 2018-01-03 17:14:12 +00:00 committed by GitHub
parent a27887474e
commit a2b924b06e
2 changed files with 8 additions and 2 deletions

View File

@ -212,7 +212,10 @@ describe('Acceptance: Settings - Tags', function () {
.to.equal(2);
});
it('loads tag via slug when accessed directly', async function () {
// TODO: Unskip and fix
// skipped because it was failing most of the time on Travis
// see https://github.com/TryGhost/Ghost/issues/8805
it.skip('loads tag via slug when accessed directly', async function () {
server.createList('tag', 2);
await visit('/settings/tags/tag-1');

View File

@ -25,7 +25,10 @@ const assignPostWithTags = function postWithTags(context, ...slugs) {
});
};
describe('Integration: Component: gh-psm-tags-input', function() {
// TODO: Unskip and fix
// skipped because it was failing most of the time on Travis
// see https://github.com/TryGhost/Ghost/issues/8805
describe.skip('Integration: Component: gh-psm-tags-input', function() {
setupComponentTest('gh-psm-tags-input', {
integration: true
});