vast-player-react
Version:
A React Component That Plays an Inline VAST 4.0 Ad
25 lines (19 loc) • 471 B
JavaScript
;
import vastXml from 'vast-xml-4';
import Bluebird from 'bluebird';
import fs from 'fs';
const fsReadFile = Bluebird.promisify(fs.readFile);
const express = require('express');
class TestUtils {
static getTestXml(xmlPath) {
return fsReadFile(xmlPath).then((xmlStr) => (
vastXml.parse(xmlStr)
));
}
static getExpressApp() {
const app = express();
app.use(express.static('./'));
return app;
}
}
export default TestUtils;