Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: use jest and coffee to replace tap and test-console #120

Merged
merged 11 commits into from
Dec 16, 2021
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ lib-cov
pids
logs
results
.nyc_output

.vscode
npm-debug.log
Expand Down
2 changes: 2 additions & 0 deletions actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ async function onSetRepository(name, repo) {
const npmrc = await readFile(NPMRC);
Object.assign(npmrc, { [REPOSITORY]: repo });
await writeFile(NPMRC, npmrc);
printSuccess(`Set repository attribute of npmrc successfully`);
}
}

Expand Down Expand Up @@ -264,6 +265,7 @@ async function onTest(target) {
messages.push(prefix + name + geneDashLine(name, length) + suffix);
});
printMessages(messages);
return messages;
}

module.exports = {
Expand Down
241 changes: 0 additions & 241 deletions actions.test.js

This file was deleted.

Loading