assertvanish
Version:
assert that an object will vanish
15 lines (14 loc) • 309 B
HTML
<html>
<head>
<title>test</title>
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://localhost');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>
</head>
<body>foo</body>
</html>