UNPKG

766 BJavaScriptView Raw
1var path = require ('path');
2var fs = require ('fs');
3var assert = require ('assert');
4
5var mod = require ('..');
6var modPath = require.resolve('..');
7
8var baseName = path.basename (__filename, path.extname (__filename));
9var configDir = path.join (__dirname, baseName);
10
11var globalVerbose = process.env.VERBOSE || false;
12
13describe (baseName+" loading node part", function () {
14
15 it.skip ("will give flow", function () {
16 assert (mod.flow);
17 });
18
19 it.skip ("will give flow loader", function () {
20 assert (mod.flow)
21 });
22});
23
24// if ("placeholder" in enchanted) {
25// if (enchanted.optional) {
26// } else if (enchanted.default) {
27// }
28// } else if ("variable" in enchanted) {
29// } else if ("error" in enchanted || "include" in enchanted) {
30//
31// }