diff --git a/README.md b/README.md index bd8b164..1606f99 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ Installation ![SC open](./screenshots/sc_6-green.png) -![SC open](./screenshots/sc_6-red.png) - ![SC open](./screenshots/sc_6-open.png) -![Options SC](./screenshots/sc_4-options.png) +![Options SC](./screenshots/sc_7-options2.png) + +![Options SC](./screenshots/sc_7-options4.png) ## Development instructions diff --git a/screenshots/sc_7-options2.png b/screenshots/sc_7-options2.png new file mode 100644 index 0000000..d2310db Binary files /dev/null and b/screenshots/sc_7-options2.png differ diff --git a/screenshots/sc_7-options3.png b/screenshots/sc_7-options3.png new file mode 100644 index 0000000..4e03f3f Binary files /dev/null and b/screenshots/sc_7-options3.png differ diff --git a/screenshots/sc_7-options4.png b/screenshots/sc_7-options4.png new file mode 100644 index 0000000..8465834 Binary files /dev/null and b/screenshots/sc_7-options4.png differ diff --git a/tests/components/Alert.react.jest.js b/tests/components/Alert.react.jest.js index c6e6335..2c1efa3 100644 --- a/tests/components/Alert.react.jest.js +++ b/tests/components/Alert.react.jest.js @@ -1,6 +1,6 @@ jest.dontMock('../../assets/js/components/Alert.react.js'); -describe('Wakatime', function() { +describe('Alert', function() { var React, Alert, TestUtils, Component; beforeEach(function() { diff --git a/tests/components/Options.react.jest.js b/tests/components/Options.react.jest.js index c1385bd..dcdbdd6 100644 --- a/tests/components/Options.react.jest.js +++ b/tests/components/Options.react.jest.js @@ -1,6 +1,6 @@ jest.dontMock('../../assets/js/components/Options.react.js'); -describe('Wakatime', function() { +describe('Options', function() { var React, Options, TestUtils, Component; beforeEach(function() { diff --git a/tests/components/SitesList.react.jest.js b/tests/components/SitesList.react.jest.js new file mode 100644 index 0000000..8202ccd --- /dev/null +++ b/tests/components/SitesList.react.jest.js @@ -0,0 +1,17 @@ +jest.dontMock('../../assets/js/components/SitesList.react.js'); + +describe('SitesList', function() { + var React, SitesList, TestUtils, Component; + + beforeEach(function() { + // Setup our tools + React = require('react/addons'); + SitesList = require('../../assets/js/components/SitesList.react.js'); + TestUtils = React.addons.TestUtils; + // Create the React component here using TestUtils and store into Component + }); + + it('should work', function() { + expect(2 + 2).toEqual(4); + }); +}); \ No newline at end of file