mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Update settings test for global git user
This commit is contained in:
parent
6a9213da64
commit
20a0e4f3e0
@ -91,7 +91,8 @@ describe("api/editor/settings", function() {
|
|||||||
projects: {
|
projects: {
|
||||||
getActiveProject: () => 'test-active-project',
|
getActiveProject: () => 'test-active-project',
|
||||||
getFlowFilename: () => 'test-flow-file',
|
getFlowFilename: () => 'test-flow-file',
|
||||||
getCredentialsFilename: () => 'test-creds-file'
|
getCredentialsFilename: () => 'test-creds-file',
|
||||||
|
getGlobalGitUser: () => {return {name:'foo',email:'foo@example.com'}}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -106,6 +107,8 @@ describe("api/editor/settings", function() {
|
|||||||
res.body.should.have.property("files");
|
res.body.should.have.property("files");
|
||||||
res.body.files.should.have.property("flow",'test-flow-file');
|
res.body.files.should.have.property("flow",'test-flow-file');
|
||||||
res.body.files.should.have.property("credentials",'test-creds-file');
|
res.body.files.should.have.property("credentials",'test-creds-file');
|
||||||
|
res.body.should.have.property("git");
|
||||||
|
res.body.git.should.have.property("globalUser",{name:'foo',email:'foo@example.com'});
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user