line-api-cli
Version:
LINE API CLIs for Node.js
15 lines (12 loc) • 346 B
JavaScript
import colors from 'colors';
import theme from './lib/theme';
import Operation from './lib/operations/operation';
colors.setTheme(theme);
// To make sure, not accidentally use real configuration during tests
Operation._config = {
channel: {
id: 999999,
secret: 'global mock secret',
accessToken: 'global mock access token'
}
};