1
1
/* eslint-env mocha */
2
2
'use strict'
3
3
4
- const { getDescribe, getIt, expect } = require ( '../utils/mocha' )
4
+ const { getDescribe, getIt, expect } = require ( '../../ utils/mocha' )
5
5
const waterfall = require ( 'async/waterfall' )
6
6
7
7
module . exports = ( createCommon , options ) => {
8
8
const describe = getDescribe ( options )
9
9
const it = getIt ( options )
10
10
const common = createCommon ( )
11
11
12
- describe ( '.config.profile ' , function ( ) {
12
+ describe ( '.config.profiles.apply ' , function ( ) {
13
13
this . timeout ( 30 * 1000 )
14
14
let ipfs
15
15
@@ -30,30 +30,10 @@ module.exports = (createCommon, options) => {
30
30
31
31
after ( ( done ) => common . teardown ( done ) )
32
32
33
- it ( 'should output changes but not save them for dry run' , ( done ) => {
34
- let config
35
- waterfall ( [
36
- ( cb ) => ipfs . config . get ( cb ) ,
37
- ( _config , cb ) => {
38
- config = _config
39
- ipfs . config . profile ( 'lowpower' , { dryRun : true } , cb )
40
- } ,
41
- ( diff , cb ) => {
42
- expect ( diff . oldCfg . Swarm . ConnMgr . LowWater ) . to . not . equal ( diff . newCfg . Swarm . ConnMgr . LowWater )
43
- ipfs . config . get ( cb )
44
- } ,
45
- ( newConfig , cb ) => {
46
- expect ( newConfig . Swarm . ConnMgr . LowWater ) . to . equal ( config . Swarm . ConnMgr . LowWater )
47
- cb ( )
48
- }
49
- ] , done )
50
- } )
51
-
52
- it ( 'should set a config profile' , ( done ) => {
33
+ it ( 'should apply a config profile' , ( done ) => {
53
34
let diff
54
35
waterfall ( [
55
- ( cb ) => ipfs . config . get ( cb ) ,
56
- ( config , cb ) => ipfs . config . profile ( 'lowpower' , cb ) ,
36
+ ( cb ) => ipfs . config . profiles . apply ( 'lowpower' , cb ) ,
57
37
( _diff , cb ) => {
58
38
diff = _diff
59
39
expect ( diff . oldCfg . Swarm . ConnMgr . LowWater ) . to . not . equal ( diff . newCfg . Swarm . ConnMgr . LowWater )
0 commit comments