nodobjc-x
Version:
The Node.js ⇆ Objective-C bridge
16 lines (11 loc) • 426 B
JavaScript
var $ = require('../global');
var assert = require('assert');
// test that global `framework()` style import works
framework('Foundation');
// test that the `NSObject` class is present
assert(NSObject, 'Cannot find global NSObject');
// test that the `$` exports also contain `NSObject`
assert($.NSObject, 'Cannot find exported NSObject');
// test that `$` is *not* the global object
foo = 'bar';
assert($.foo !== 'bar');