UNPKG

dreemgl

Version:

DreemGL is an open-source multi-screen prototyping framework for mediated environments, with a visual editor and shader styling for webGL and DALi runtimes written in JavaScript. As a toolkit for gpu-accelerated multiscreen development, DreemGL includes

11 lines (9 loc) 256 B
var Glob = require('../glob.js').Glob; var test = require('tap').test; test('new glob, with cb, and no options', function (t) { new Glob(__filename, function(er, results) { if (er) throw er; t.same(results, [__filename]); t.end(); }); });