-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: align functional test suite to verdaccio
- Loading branch information
1 parent
b5290b9
commit fd2b97b
Showing
5 changed files
with
24 additions
and
21 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = async () => { | ||
// here we should create dinamically config files | ||
module.exports = async function() { | ||
// here we should create dynamically config files | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
require('@babel/register')({ | ||
extensions: ['.ts', '.js'], | ||
extensions: ['.ts', '.js'] | ||
}); | ||
const chalk = require('chalk'); | ||
|
||
module.exports = async () => { | ||
console.log(chalk.blue('setup: starting servers')); | ||
import { blue } from 'kleur'; | ||
|
||
module.exports = async () => { | ||
console.log(blue('setup: starting servers')); | ||
require('./lib/setup'); | ||
}; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
const chalk = require('chalk'); | ||
import { blue } from 'kleur'; | ||
|
||
module.exports = async () => { | ||
console.log(chalk.blue('teardown: all servers closed')); | ||
console.log(blue('teardown: all servers closed')); | ||
}; |