選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

9 行
206 B

  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. })