forked from LaconicNetwork/kompose
Shell scripts to test k8s and os conversion which can be ran by following command in root dir `./script/test/cmd/tests.sh`
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
var assert = require("assert");
|
|
|
|
describe('Dummy Test', function(){
|
|
it('should pass', function(){
|
|
assert.ok(true, "It is true!");
|
|
});
|
|
}); |