spincycle
Version:
A reactive message router and object manager that lets clients subscribe to object property changes on the server
32 lines (26 loc) • 819 B
HTML
<html>
<head>
<title>polymer-cookie 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="../polymer-cookie.html">
</head>
<body>
<test-fixture id="basic">
<template>
<polymer-cookie></polymer-cookie>
</template>
</test-fixture>
<script>
suite('polymer-cookie', function() {
test('instantiating the element works', function() {
let element = fixture('basic');
assert.equal(element.is, 'polymer-cookie');
});
});
</script>
</body>
</html>