Migrated from Travis to Circle CI

This commit is contained in:
Steve Gravrock
2021-04-17 11:34:28 -07:00
parent c2f04ba627
commit 82cc1083b6
13 changed files with 295 additions and 80 deletions

View File

@@ -99,4 +99,13 @@ describe('npm package', function() {
expect(images).toContain('jasmine-horizontal.svg');
expect(images).toContain('jasmine_favicon.png');
});
it('does not have CI config files and scripts', function() {
expect(fs.existsSync(path.resolve(this.tmpDir, 'package/.circleci'))).toBe(
false
);
expect(fs.existsSync(path.resolve(this.tmpDir, 'package/scripts'))).toBe(
false
);
});
});

View File

@@ -17,6 +17,7 @@
"helpers/integrationMatchers.js",
"helpers/promises.js",
"helpers/requireFastCheck.js",
"helpers/overrideConsoleLogForCircleCi.js",
"helpers/nodeDefineJasmineUnderTest.js"
],
"random": true