Skip to content

Commit

Permalink
Unskip sync test
Browse files Browse the repository at this point in the history
  • Loading branch information
taniarascia committed Oct 25, 2020
1 parent c1b93c5 commit d67378e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "takenote",
"version": "0.6.1",
"version": "0.7.0",
"description": "A free, open-source notes app for the web.",
"author": "Tania Rascia",
"license": "MIT",
Expand All @@ -15,7 +15,6 @@
"start": "node -r ts-node/register/transpile-only src/server/index.ts",
"test": "jest --config config/jest.config.js",
"test:e2e": "cypress run --config-file config/cypress.config.json",
"test:e2e:only": "# Usage: npm run e2e:only -- <note/category> \n func() { npm run test:e2e -- --spec \"tests/e2e/integration/${1}.test.ts\"; }; func",
"test:e2e:open": "cypress open --config-file config/cypress.config.json",
"test:coverage": "jest --config config/jest.config.js --coverage --watchAll=false",
"test:coverage:ci": "jest --config config/jest.config.js --ci --coverage --watchAll=false && cat ./coverage/lcov.info | coveralls",
Expand Down
9 changes: 5 additions & 4 deletions src/client/containers/SettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,13 @@ export const SettingsModal: React.FC = () => {
</TabPanel>
<TabPanel label="About TakeNote" icon={Layers}>
<p>
TakeNote is a minimalist note-taking app for developers that integrates with GitHub.
Write in plain text and have your notes accessible from the web.
TakeNote is a minimalist note-taking app for developers. Write in plain text and
have your notes accessible from the web.
</p>
<p>
This app has no tracking or analytics and does not retain any user data. All data
exists only in GitHub, in the <b>takenote-data</b> repo.
This app has no tracking or analytics and does not retain any user data. Notes are
persisted in local storage and can be downloaded as markdown files from the data
management tab.
</p>
<p>
TakeNote was created by{' '}
Expand Down
3 changes: 1 addition & 2 deletions tests/e2e/integration/note.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,7 @@ describe('Manage notes test', () => {
cy.then(() => assertNoteListLengthEquals(this.allNoteStartCount))
})

// TODO: add manual sync back in
it.skip('should sync some notes', function () {
it('should sync some notes', function () {
const noteOneTitle = 'note 1'
const noteTwoTitle = 'same note title'
const noteThreeTitle = 'same note title'
Expand Down

0 comments on commit d67378e

Please sign in to comment.