helpful-receptionist-4197
05/23/2023, 6:47 PM// src/foo.ts
export const FOO = import.meta.url;// cypress/e2e/example.cy.ts
import { FOO } from "../../src/foo"; // (also, how do i get the '@' prefix to work?)
describe('My First Test', () => {
  it('visits the app root url', () => {
    cy.visit('/')
    cy.contains('h1', 'You did it!')
  })
})