mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-11 06:46:03 +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');
|
||
|
});
|
||
|
});
|