aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/import-change-tracking/custom1prepare2.js
blob: 79be59bf974e7da7ad2294efb3665ad7cdcc295b (plain)
1
2
3
4
5
6
7
8
9
10
var Custom1Command = require("./custom1command.js");
var Irrelevant = require("./irrelevant.js");

function prepare() {
    console.info("running custom1 prepare script");
    var cmd = new JavaScriptCommand();
    cmd.description = "running custom1 command";
    cmd.sourceCode = function() { return Custom1Command.sourceCode(); };
    return cmd;
}