mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-12 15:24:18 +00:00
8 lines
209 B
JavaScript
8 lines
209 B
JavaScript
|
describe('Realm', function() {
|
||
|
it('should be requirable', function() {
|
||
|
var realm = require('realm');
|
||
|
expect(typeof realm).toBe('function');
|
||
|
expect(realm.name).toBe('Realm');
|
||
|
});
|
||
|
});
|