We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aec471 commit b0b0903Copy full SHA for b0b0903
tests/config.js
@@ -50,5 +50,9 @@ describe('configure', () => {
50
var cachePath = locations.getCachePath('test', 'foo', 'foo');
51
assert.equal(cachePath, 'foo/test-foo-cache-config.yaml');
52
});
53
+ it('will put together a properly named source file', () => {
54
+ var sourceFile = locations.getSourceFile('test', 'foo');
55
+ assert.equal(sourceFile, 'test-foo-config.yaml');
56
+ });
57
58
0 commit comments