Skip to content

Commit

Permalink
TESTS: Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteuSan committed May 14, 2024
1 parent f24c172 commit c81f2a9
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions tests/web-components/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,31 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="module" src="../../packages/himig-components/ms-button"></script>
<title>Himig Components Testing</title>
<link rel="stylesheet" href="../../node_modules/@matteusan/himig-components/styles.css">
<script type="module" src="../../node_modules/@matteusan/himig-components/ms-button.js"></script>
<style>
:root {
/*--ms-theme-background: #fff;*/
}
</style>
</head>
<body>
<ms-button>
Build
</ms-button>
<section>
<ms-button>MSButton</ms-button>
<ms-button type="outlined">MSButton</ms-button>
<ms-button type="filled">MSButton</ms-button>
</section>

<section>
<ms-button disabled>MSButton</ms-button>
<ms-button disabled type="outlined">MSButton</ms-button>
<ms-button disabled type="filled">MSButton</ms-button>
</section>

<section>
<ms-button type="raised filled">MSButton</ms-button>
<ms-button type="fullwidth filled">MSButton</ms-button>
</section>
</body>
</html>

0 comments on commit c81f2a9

Please sign in to comment.