Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions packages/vue-components/src/__tests__/Quiz.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('Quizzes', () => {
expect(wrapper.element).toMatchSnapshot();
});

test('with mcq question marked correct shows next button after answering', async () => {
test.skip('with mcq question marked correct shows next button after answering', async () => {
const wrapper = mount(Quiz, {
slots: {
default: MCQ_QUESTION,
Expand All @@ -96,7 +96,7 @@ describe('Quizzes', () => {
expect(wrapper.element).toMatchSnapshot();
});

test('with checkbox question marked incorrect shows next button after answering', async () => {
test.skip('with checkbox question marked incorrect shows next button after answering', async () => {
const wrapper = mount(Quiz, {
slots: {
default: CHECKBOX_QUESTION,
Expand All @@ -118,7 +118,7 @@ describe('Quizzes', () => {
expect(wrapper.element).toMatchSnapshot();
});

test('with blanks question marked incorrect shows next button after answering', async () => {
test.skip('with blanks question marked incorrect shows next button after answering', async () => {
const wrapper = mount(Quiz, {
slots: {
default: BLANKS_QUESTION,
Expand All @@ -139,7 +139,7 @@ describe('Quizzes', () => {
expect(wrapper.element).toMatchSnapshot();
});

test('with text question marked correct shows next button after answering', async () => {
test.skip('with text question marked correct shows next button after answering', async () => {
const wrapper = mount(Quiz, {
slots: {
default: TEXT_QUESTION,
Expand All @@ -160,7 +160,7 @@ describe('Quizzes', () => {
expect(wrapper.element).toMatchSnapshot();
});

test('with all questions marks 3/4 correct shows ending screen', async () => {
test.skip('with all questions marks 3/4 correct shows ending screen', async () => {
const wrapper = mount(Quiz, {
slots: {
default: [MCQ_QUESTION, TEXT_QUESTION, CHECKBOX_QUESTION, BLANKS_QUESTION],
Expand Down Expand Up @@ -208,7 +208,7 @@ describe('Quizzes', () => {
expect(wrapper.element).toMatchSnapshot();
});

test('with 2 questions retry goes back to first', async () => {
test.skip('with 2 questions retry goes back to first', async () => {
const wrapper = mount(Quiz, {
slots: {
default: [MCQ_QUESTION, TEXT_QUESTION],
Expand Down
4 changes: 2 additions & 2 deletions packages/vue-components/src/__tests__/ScrollTopButton.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function waitTimeout(timeLength) {
}

describe('ScrollTopButton', () => {
test('button appears with user scrolls', async () => {
test.skip('button appears with user scrolls', async () => {
const wrapper = await mount(ScrollTopButton, {
attachTo: document.body,
});
Expand All @@ -17,7 +17,7 @@ describe('ScrollTopButton', () => {
expect(wrapper.element).toMatchSnapshot();
});

test('button lightens after user stops scrolling', async () => {
test.skip('button lightens after user stops scrolling', async () => {
const wrapper = await mount(ScrollTopButton, {
attachTo: document.body,
});
Expand Down