Better default README.md content and edit button

This commit is contained in:
Nick O'Leary
2018-01-25 13:30:27 +00:00
parent 0b0005337c
commit 0dd7bc7fb9
3 changed files with 9 additions and 16 deletions

View File

@@ -46,13 +46,6 @@ describe('storage/localfilesystem/projects/defaultFileSet', function() {
generated.should.match(/A TEST NAME/);
generated.should.match(/A TEST SUMMARY/);
});
it('generates settings.json for a project', function() {
var generated = defaultFileSet["settings.json"]({
name: "A TEST NAME",
summary: "A TEST SUMMARY"
});
generated.length.should.be.greaterThan(0);
});
it('generates .gitignore for a project', function() {
var generated = defaultFileSet[".gitignore"]({
name: "A TEST NAME",
@@ -60,9 +53,4 @@ describe('storage/localfilesystem/projects/defaultFileSet', function() {
});
generated.length.should.be.greaterThan(0);
});
});