blob: cb4f7c3f0d8fbaf367dedbcd8d7cef7f9db7f45b [file] [log] [blame]
<html>
<import src="../resources/chai.sky" />
<import src="../resources/mocha.sky" />
<script>
describe('Document', function() {
it('should have a constructor', function() {
var doc = new Document();
assert.isNotNull(doc);
assert.doesNotThrow(function() {
doc.registerElement('x-foo');
}, 'new document should have a registration context');
});
});
</script>
</html>