Created
March 26, 2019 14:55
-
-
Save zindel/5c5b37704192af0d96d4105ce250d89f to your computer and use it in GitHub Desktop.
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
it('does execute scripts in a non-root package scope', async () => { | |
const p = await createTestSandbox(...fixture); | |
await p.esy('install'); | |
await p.esy('build'); | |
await expect(p.esy('-p dep cmd1')).rejects.toMatchObject({ | |
message: expect.stringMatching('error: unable to resolve command: cmd1'), | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment