git-to-k8s
Version:
Small tool to automate the git to url flow on k8s
14 lines (11 loc) • 300 B
JavaScript
process.env.NO_DEPRECATION = 'git-to-k8s';
var after = require('after')
var assert = require('assert')
var lib = require('../')
describe('git-to-k8s', function(){
it('should success', function() {
const mf = new lib.MainFlow();
lib.logger.info('Testing')
lib.shell.run('pwd')
})
})