angular-cn/modules/benchpress/benchpress.ts

27 lines
816 B
TypeScript
Raw Normal View History

import {bind, provide} from '@angular/core/src/di';
import {Options} from './common';
2015-03-06 14:46:33 -05:00
export * from './common';
export {SeleniumWebDriverAdapter} from './src/webdriver/selenium_webdriver_adapter';
2015-03-06 14:46:33 -05:00
var fs = require('fs');
// TODO(tbosch): right now we bind the `writeFile` method
// in benchpres/benchpress.es6. This does not work for Dart,
// find another way...
// Note: Can't do the `require` call in a facade as it can't be loaded into the browser
// for our unit tests via karma.
Options.DEFAULT_PROVIDERS.push(bind(Options.WRITE_FILE).toValue(writeFile));
2015-03-06 14:46:33 -05:00
function writeFile(filename, content): Promise<any> {
2015-03-06 14:46:33 -05:00
return new Promise(function(resolve, reject) {
fs.writeFile(filename, content, (error) => {
if (error) {
reject(error);
} else {
resolve();
}
});
})
}