Fix linter issue

This commit is contained in:
JeremyWuuuuu 2022-03-18 16:01:41 +08:00 committed by zouhang
parent c2ecb3a773
commit 9c1d2abf77
2 changed files with 3 additions and 2 deletions

View File

@ -5,3 +5,4 @@ CHANGELOG.en-US.md
!.*
docs/components.d.ts
coverage
ssr-testing/cases/*

View File

@ -9,8 +9,8 @@ import ElementPlus, { ID_INJECTION_KEY } from '../dist/element-plus'
import type { Browser } from 'puppeteer'
const projectRoot = process.cwd()
const testRoot = `${projectRoot}/ssr-testing`
const demoRoot = path.resolve(projectRoot, 'ssr-testing/cases')
const testRoot = path.resolve(projectRoot, 'ssr-testing')
const demoRoot = path.resolve(testRoot, 'cases')
describe('Cypress Button', () => {
let browser: Browser
beforeAll(async () => {