2017-08-16 08:42:48 +00:00
|
|
|
import { expect, tap } from 'tapbundle'
|
2017-01-21 17:10:27 +00:00
|
|
|
|
2017-08-16 08:42:48 +00:00
|
|
|
import * as beautycolor from '../ts/index'
|
2017-01-21 17:10:27 +00:00
|
|
|
|
2017-08-16 08:42:48 +00:00
|
|
|
tap.test('should produce a blue font', async () => {
|
|
|
|
console.log(beautycolor.coloredString('this is a blue font, no background', 'blue'))
|
2017-01-21 17:10:27 +00:00
|
|
|
})
|
2017-08-16 08:42:48 +00:00
|
|
|
|
|
|
|
tap.test('should produce a red string with green background', async () => {
|
|
|
|
console.log(beautycolor.coloredString('this is a red font with green background', 'red', 'green'))
|
|
|
|
})
|
|
|
|
|
|
|
|
tap.test('should produce different font colors', async () => {
|
|
|
|
console.log(
|
|
|
|
beautycolor.coloredString('blue', 'blue'),
|
|
|
|
beautycolor.coloredString('brown', 'brown'),
|
|
|
|
beautycolor.coloredString('red', 'red'),
|
|
|
|
beautycolor.coloredString('orange', 'orange'),
|
|
|
|
beautycolor.coloredString('green', 'green'),
|
|
|
|
beautycolor.coloredString('pink', 'pink'),
|
|
|
|
beautycolor.coloredString('cyan', 'cyan')
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2017-08-16 08:49:38 +00:00
|
|
|
tap.test('should produce different background colors', async () => {
|
2017-08-16 08:42:48 +00:00
|
|
|
console.log(
|
|
|
|
beautycolor.coloredString('blue', 'white', 'blue'),
|
|
|
|
beautycolor.coloredString('brown', 'white', 'brown'),
|
|
|
|
beautycolor.coloredString('red', 'white', 'red'),
|
|
|
|
beautycolor.coloredString('orange', 'white', 'orange'),
|
|
|
|
beautycolor.coloredString('green', 'white', 'green'),
|
|
|
|
beautycolor.coloredString('pink', 'white', 'pink'),
|
|
|
|
beautycolor.coloredString('cyan', 'white', 'cyan')
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
tap.start()
|