Coder Social home page Coder Social logo

scr1ptechnick / pythagora-demo-node-fs-extra Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pythagora-io/pythagora-demo-node-fs-extra

0.0 0.0 0.0 1.18 MB

Node.js: extra methods for the fs object like copy(), remove(), mkdirs()

License: MIT License

JavaScript 100.00%

pythagora-demo-node-fs-extra's Introduction

node-fs-extra fork with Pythagora tests

If you want to try it out yourself, just clone the repo and run:

npm i
npx jest ./pythagora_tests/

Bugs that Pythagora tests caught:

Edge cases

  1. areIdentical returns undefined instead of false if destStat is empty object:

     test('should return false if destStat is missing ino and/or dev properties', () => {
       const srcStat = fs.statSync(__filename);
       const destStat = {};
       const result = areIdentical(srcStat, destStat);
       expect(result).toBe(false);
    });
  2. isSrcSubdir says /test/src is subfolder of itself:

    test('should return false if dest is the same as src', () => {
      expect(isSrcSubdir('/test/src', '/test/src')).toBe(false);
    });

pythagora-demo-node-fs-extra's People

Contributors

jprichardson avatar ryanzim avatar manidlou avatar jpeer264 avatar sri-rang avatar agnivade avatar mchunkytrunk avatar binki avatar overlookmotel avatar bartland avatar mbargiel avatar leonostrez avatar ulikoehler avatar rjz avatar reggi avatar nacd avatar abetomo avatar ackar avatar mikermcneil avatar lamweili avatar hhamilto avatar newmanw avatar raybellis avatar ramhejazi avatar prayagverma avatar atao60 avatar philippefutureboy avatar peterdavehello avatar pgonzal avatar patrickjs avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.