Skip to content

Commit

Permalink
Putting in dummy specs to avoid build error
Browse files Browse the repository at this point in the history
  • Loading branch information
einari committed Dec 2, 2020
1 parent bc0d0c1 commit 19a2bd6
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .mocharc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ chai.use(chaiAsPromised);
module.exports = {
diff: true,
extension: ['ts'],
spec: ['**/for_*/**/*.ts', '**/spec/*_spec.ts'],
spec: ['**/for_*/**/*.ts'],
ignore: ['**/*.d.ts'],
require: ['ts-node/register']
}
7 changes: 7 additions & 0 deletions Source/Applications/Backend/for_Dummy/when_nothing.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

describe('when nothing', () => {
it('should not fail', () => true.should.be.true);

});
7 changes: 7 additions & 0 deletions Source/Events/Backend/for_Dummy/when_nothing.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

describe('when nothing', () => {
it('should not fail', () => true.should.be.true);

});
7 changes: 7 additions & 0 deletions Source/Microservices/Backend/for_Dummy/when_nothing.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

describe('when nothing', () => {
it('should not fail', () => true.should.be.true);

});
7 changes: 7 additions & 0 deletions Source/Portal/Backend/for_Dummy/when_nothing.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

describe('when nothing', () => {
it('should not fail', () => true.should.be.true);

});

0 comments on commit 19a2bd6

Please sign in to comment.