Last active
January 18, 2018 22:52
-
-
Save izifortune/948cb42292319c9ffa9ca66e838b4c76 to your computer and use it in GitHub Desktop.
Nrwl libs test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { getAffectedLibs, pexec } = require('./utils'); | |
const libs = getAffectedLibs(); | |
(async () => { | |
try { | |
await pexec(`node ./node_modules/.bin/jest ${libs.join(' ')}`) | |
} catch (e) { | |
console.error(e); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment