mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
#!/usr/bin/env node
|
|
"use strict";
|
|
"use server";
|
|
|
|
|
|
require("c9/inline-mocha")(module);
|
|
|
|
describe(__filename, function() {
|
|
this.timeout(20000);
|
|
it("should analyze 'aceeditor.js'", require('./framework').buildTest("aceeditor.js"));
|
|
}); |