Skip to content

Commit d67378e

Browse files
author
Tania Rascia
committed
Unskip sync test
1 parent c1b93c5 commit d67378e

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "takenote",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "A free, open-source notes app for the web.",
55
"author": "Tania Rascia",
66
"license": "MIT",
@@ -15,7 +15,6 @@
1515
"start": "node -r ts-node/register/transpile-only src/server/index.ts",
1616
"test": "jest --config config/jest.config.js",
1717
"test:e2e": "cypress run --config-file config/cypress.config.json",
18-
"test:e2e:only": "# Usage: npm run e2e:only -- <note/category> \n func() { npm run test:e2e -- --spec \"tests/e2e/integration/${1}.test.ts\"; }; func",
1918
"test:e2e:open": "cypress open --config-file config/cypress.config.json",
2019
"test:coverage": "jest --config config/jest.config.js --coverage --watchAll=false",
2120
"test:coverage:ci": "jest --config config/jest.config.js --ci --coverage --watchAll=false && cat ./coverage/lcov.info | coveralls",

src/client/containers/SettingsModal.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,13 @@ export const SettingsModal: React.FC = () => {
202202
</TabPanel>
203203
<TabPanel label="About TakeNote" icon={Layers}>
204204
<p>
205-
TakeNote is a minimalist note-taking app for developers that integrates with GitHub.
206-
Write in plain text and have your notes accessible from the web.
205+
TakeNote is a minimalist note-taking app for developers. Write in plain text and
206+
have your notes accessible from the web.
207207
</p>
208208
<p>
209-
This app has no tracking or analytics and does not retain any user data. All data
210-
exists only in GitHub, in the <b>takenote-data</b> repo.
209+
This app has no tracking or analytics and does not retain any user data. Notes are
210+
persisted in local storage and can be downloaded as markdown files from the data
211+
management tab.
211212
</p>
212213
<p>
213214
TakeNote was created by{' '}

tests/e2e/integration/note.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,7 @@ describe('Manage notes test', () => {
292292
cy.then(() => assertNoteListLengthEquals(this.allNoteStartCount))
293293
})
294294

295-
// TODO: add manual sync back in
296-
it.skip('should sync some notes', function () {
295+
it('should sync some notes', function () {
297296
const noteOneTitle = 'note 1'
298297
const noteTwoTitle = 'same note title'
299298
const noteThreeTitle = 'same note title'

0 commit comments

Comments
 (0)