mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
17 lines
343 B
JavaScript
17 lines
343 B
JavaScript
"use strict";
|
|
|
|
var TestCase = require("./helper/test-case");
|
|
var argv = require("yargs").argv;
|
|
|
|
if (argv.language) {
|
|
process.on('message', function (data) {
|
|
if (data.filePath) {
|
|
try {
|
|
TestCase.runTestCase(argv.language, data.filePath);
|
|
process.send({success: true});
|
|
} catch (e) {
|
|
process.send({error: e});
|
|
}
|
|
}
|
|
});
|
|
} |