您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 年前
12345678
  1. // https://docs.cypress.io/api/introduction/api.html
  2. describe('My First Test', () => {
  3. it('Visits the app root url', () => {
  4. cy.visit('/')
  5. cy.contains('h1', 'Welcome to Your Vue.js App')
  6. })
  7. })