Skip to content

Commit 7c3de4e

Browse files
committed
only run tests on push, not pull-request
1 parent 7dd7578 commit 7c3de4e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/testing-node.js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: Build
55

6-
on: [push, pull_request]
6+
on: [push]
77

88
jobs:
99
build:

src/config/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ module.exports.initialize = async function(example = false, options = {}) {
7373
throw new Error('Config file already exists. Please remove it if you\'d like to initialize a new config.');
7474
}
7575

76-
77-
7876
// no example provided
7977
if (!example) {
8078

test/unit/src/config/index.spec.js

+8
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ describe('Config', () => {
4040
};
4141

4242
fs = {
43+
writeFileSync: sinon.stub(),
4344
existsSync: sinon.stub().returns(false),
4445
readdirSync: sinon.stub().returns([ 'ex1', 'ex2' ]),
4546
copyFileSync: sinon.stub()
@@ -142,5 +143,12 @@ describe('Config', () => {
142143
expect(fs.copyFileSync.callCount).to.equal(1);
143144
expect(fs.copyFileSync.args[0][1]).to.match(/homedir.*/);
144145
}));
146+
147+
it('should just make a blank config if there is no example', () => config.initialize().then(() => {
148+
expect(fs.existsSync.callCount).to.equal(1);
149+
expect(fs.writeFileSync.callCount).to.equal(1);
150+
expect(fs.writeFileSync.args[0][0]).to.match(/repoPath.*/);
151+
expect(fs.writeFileSync.args[0][1]).to.equal('{\n\n}');
152+
}));
145153
});
146154
});

0 commit comments

Comments
 (0)