mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #31108 from jtand/npm_test_fix
Changed npm integration test to install request.
This commit is contained in:
commit
c56a819fd8
1 changed files with 2 additions and 2 deletions
|
@ -36,9 +36,9 @@ class NpmStateTest(integration.ModuleCase, integration.SaltReturnAssertsMixIn):
|
|||
'''
|
||||
Determine if URL-referenced NPM module can be successfully installed.
|
||||
'''
|
||||
ret = self.run_state('npm.installed', name='git://github.com/Unitech/pm2')
|
||||
ret = self.run_state('npm.installed', name='git://github.com/request/request')
|
||||
self.assertSaltTrueReturn(ret)
|
||||
ret = self.run_state('npm.removed', name='git://github.com/Unitech/pm2')
|
||||
ret = self.run_state('npm.removed', name='git://github.com/request/request')
|
||||
self.assertSaltTrueReturn(ret)
|
||||
|
||||
@destructiveTest
|
||||
|
|
Loading…
Add table
Reference in a new issue