We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a1065 commit 3bb2961Copy full SHA for 3bb2961
spec/include/file-config.spec.js
@@ -0,0 +1,12 @@
1
+const tempfile = require('tempfile');
2
+const config = require('./../../src/include/file-config');
3
+const expect = require('chai').expect;
4
+
5
+describe('The file config class', () => {
6
+ it('it takes and stores the current working directory', () => {
7
+ let workDir = tempfile(),
8
+ Config = new config(workDir);
9
10
+ expect(Config.workDir).to.equal(workDir);
11
+ });
12
+});
0 commit comments