Anyone every find Cypress to get stuck in an old s...
# e2e-testing
m
Anyone every find Cypress to get stuck in an old state where it notices file changes, start re-running your tests, but doesn't have the changes of you made in your spec?
Copy code
// 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.