We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09b7126 commit 3ffbcf5Copy full SHA for 3ffbcf5
test/index-test.js
@@ -0,0 +1,10 @@
1
+const jsdom = require( 'jsdom' );
2
+const path = require( 'path' );
3
+var chai = require( 'chai' );
4
+chai.use( require( 'chai-fs' ) );
5
+
6
+describe( 'This assignment', () => {
7
+ it( 'has been correctly cloned to your local environment', () => {
8
+ chai.assert.isDirectory( './.git', 'no ".git" folder was found within "welcome-completing-assignment". Use "git init" to create one' );
9
+ } )
10
+} )
0 commit comments