melodic-egg-83620
10/04/2022, 5:53 PM// Packages
import 'cypress-each'
// Helpers
import ValidationMixin from '@/utils/validation-mixin'
describe('Validation unit tests', () => {
// context('Methods', () => {
// const phoneTests = [...]
// it.each(phoneTests)(
// (test) => {
// return `isValidPhone testing ${test.number}`
// },
// (test) => {
// expect(ValidationMixin.methods.isValidPhone(test.number)).to.equal(test.expectation)
// }
// )
// })
})
It doesn't even recognize I changed import ValidationMixin...
from import { ValidationMixin as VM } ...
, and yet is still trying to run tests I commented out.