mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
3ea96be394
* feat(ci): replace cypress to puppeteer - Replace cypress with puppeteer * Implement puppeteer with screenshots * Remove unused variables
18 lines
374 B
HTML
18 lines
374 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Element Plus SSR testing</title>
|
|
<style>
|
|
body {
|
|
border: 2px solid var(--el-color-primary);
|
|
padding: 8px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|