How to use the node-emoji.emoji.tada function in node-emoji

To help you get started, we’ve selected a few node-emoji examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github inikulin / publish-please / test / 01-elegant-status-reporter.spec.js View on Github external
it('Should report a succeeded process', () => {
        // Given
        const message = 'yo process passed';

        // When
        reporter.reportSucceededProcess(message);
        // Then
        if (typeof process.env.APPVEYOR === 'undefined') {
            output.should.containEql(emoji.tada);
        }
    });
github inikulin / publish-please / lib / publish.js View on Github external
        return spawn(command).then(() => console.log('\n', emoji.tada, emoji.tada, emoji.tada));
github inikulin / publish-please / src / reporters / elegant-status-reporter.js View on Github external
function reportSucceededProcess(_message) {
    const emoji = require('node-emoji').emoji;
    console.log('');
    console.log(emoji.tada, emoji.tada, emoji.tada);
}