test: tsify callbacks-registry spec (#19606)

This commit is contained in:
Jeremy Apthorp 2019-08-04 17:46:58 -07:00 коммит произвёл Cheng Zhao
Родитель 45e452557b
Коммит f08be2162a
1 изменённых файлов: 9 добавлений и 12 удалений

Просмотреть файл

@ -1,13 +1,8 @@
const chai = require('chai') import { expect } from 'chai'
const dirtyChai = require('dirty-chai') import { CallbacksRegistry } from '../lib/renderer/callbacks-registry'
const { expect } = chai
chai.use(dirtyChai)
const { CallbacksRegistry } = require('../lib/renderer/callbacks-registry')
describe('CallbacksRegistry module', () => { describe('CallbacksRegistry module', () => {
let registry = null let registry: CallbacksRegistry
beforeEach(() => { beforeEach(() => {
registry = new CallbacksRegistry() registry = new CallbacksRegistry()
@ -17,13 +12,14 @@ describe('CallbacksRegistry module', () => {
const cb = () => [1, 2, 3, 4, 5] const cb = () => [1, 2, 3, 4, 5]
const key = registry.add(cb) const key = registry.add(cb)
expect(key).to.exist() expect(key).to.exist('key')
}) })
it('returns a specified callback if it is in the registry', () => { it('returns a specified callback if it is in the registry', () => {
const cb = () => [1, 2, 3, 4, 5] const cb = () => [1, 2, 3, 4, 5]
const key = registry.add(cb) const key = registry.add(cb)
const callback = registry.get(key) expect(key).to.exist('key')
const callback = registry.get(key!)
expect(callback.toString()).equal(cb.toString()) expect(callback.toString()).equal(cb.toString())
}) })
@ -37,9 +33,10 @@ describe('CallbacksRegistry module', () => {
it('removes a callback to the registry', () => { it('removes a callback to the registry', () => {
const cb = () => [1, 2, 3, 4, 5] const cb = () => [1, 2, 3, 4, 5]
const key = registry.add(cb) const key = registry.add(cb)
expect(key).to.exist('key')
registry.remove(key) registry.remove(key!)
const afterCB = registry.get(key) const afterCB = registry.get(key!)
expect(afterCB).to.be.a('function') expect(afterCB).to.be.a('function')
expect(afterCB.toString()).to.not.equal(cb.toString()) expect(afterCB.toString()).to.not.equal(cb.toString())