9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
var phpBridge = require('../lib/bridge');
|
|
var demand = require('must');
|
|
|
|
describe('php-nw Bridge.js', function () {
|
|
it('should exist', function () {
|
|
demand(phpBridge).to.exist();
|
|
});
|
|
});
|
|
|