Skip unfinished component tests
This commit is contained in:
parent
7643b687f3
commit
ee9f20ae34
|
|
@ -1,7 +1,7 @@
|
||||||
import ContentBlock from '@/components/ContentBlock.vue';
|
import ContentBlock from '@/components/ContentBlock.vue';
|
||||||
|
|
||||||
describe('<ContentBlock />', () => {
|
describe('<ContentBlock />', () => {
|
||||||
it('renders', () => {
|
it.skip('renders', () => {
|
||||||
// see: https://on.cypress.io/mounting-vue
|
// see: https://on.cypress.io/mounting-vue
|
||||||
cy.mount(ContentBlock, {
|
cy.mount(ContentBlock, {
|
||||||
props: {
|
props: {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import SubmissionForm from '@/components/content-blocks/assignment/SubmissionForm.vue';
|
import SubmissionForm from '@/components/content-blocks/assignment/SubmissionForm.vue';
|
||||||
|
|
||||||
describe('SubmissionForm', () => {
|
describe('SubmissionForm', () => {
|
||||||
it('renders', () => {
|
it.skip('renders', () => {
|
||||||
cy.mount(SubmissionForm, {
|
cy.mount(SubmissionForm, {
|
||||||
props: {
|
props: {
|
||||||
userInput: {
|
userInput: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue