Skip to content

Commit

Permalink
#0: add pending-tests for admin and CI/CD commands
Browse files Browse the repository at this point in the history
  • Loading branch information
JoernBerkefeld committed Jun 6, 2023
1 parent de57d10 commit adfa059
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions test/general.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,22 @@ describe('GENERAL', () => {
testUtils.mockReset();
});

describe('init ================', () => {
it('should init a local project without downloading BUs');
it('should init a local project and download all BUs');
});
describe('join ================', () => {
it('should clone a project from git');
});
describe('upgrade ================', () => {
it('should upgrade a project to the latest version');
});
describe('reloadBUs ================', () => {
it('should load all BUs from the server and refresh the config');
});
describe('selectTypes ================', () => {
it('should change which types are selected for default retrieval');
});
describe('explainTypes ================', () => {
it('without options', () => {
handler.explainTypes();
Expand Down Expand Up @@ -59,4 +75,14 @@ describe('GENERAL', () => {
return;
});
});
describe('createDeltaPkg ================', () => {
it('should show diff to master branch');
// mcdev createDeltaPkg master # resolves to master..HEAD
it('should show diff between master and develop branch');
// mcdev createDeltaPkg master..develop
it(
'should show diff between master and develop branch and filter the results to only show MyProject/BU1'
);
// mcdev createDeltaPkg master..develop --filter 'MyProject/BU1'
});
});

0 comments on commit adfa059

Please sign in to comment.