test(core): add a standalone test for every component with a test

This commit is contained in:
Brandy Carney
2017-12-08 13:09:17 -05:00
parent 42243952dd
commit 2ebdb366b9
38 changed files with 1489 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="UTF-8">
<title>Toggle - Standalone</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<script src="/dist/ionic.js"></script>
</head>
<body>
<ion-toggle checked></ion-toggle>
<ion-toggle color="secondary" (ionChange)="kiwiChange($event)" checked></ion-toggle>
<ion-toggle color="danger" name="cherry" checked></ion-toggle>
<ion-toggle color="light" (ionChange)="strawberryChange($event)" checked="true"></ion-toggle>
<ion-toggle color="dark" checked></ion-toggle>
<ion-toggle checked disabled></ion-toggle>
</body>
</html>