spincycle
Version:
A reactive message router and object manager that lets clients subscribe to object property changes on the server
33 lines (26 loc) • 806 B
HTML
<html>
<head>
<title>spin-app test</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<script src="../../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../../web-component-tester/browser.js"></script>
<link rel="import" href="../../src/spin-app/spin-app.html">
</head>
<body>
<test-fixture id="basic">
<template>
<spin-app></spin-app>
</template>
</test-fixture>
<script>
suite('spin-app', function() {
test('instantiating the element works', function() {
var element = fixture('basic');
assert.equal(element.is, 'spin-app');
});
});
</script>
</body>
</html>