mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
17 lines
376 B
JavaScript
17 lines
376 B
JavaScript
const LocalScreenshotConnector = require('./local');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
|
|
class CIScreenshotConnector extends LocalScreenshotConnector {
|
|
|
|
async publishBuild() {
|
|
const timespan = this.logger.createTimeSpan(`publishing build started`);
|
|
|
|
timespan.finish(`publishing build finished`);
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = CIScreenshotConnector;
|