File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff 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{ ' ' }
Original file line number Diff line number Diff 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'
You can’t perform that action at this time.
0 commit comments