mirror of
https://github.com/tornadocash/relayer-registry.git
synced 2025-01-16 08:01:10 +01:00
15 lines
466 B
JavaScript
15 lines
466 B
JavaScript
/* global ethers */
|
|
const { expect } = require('chai')
|
|
|
|
describe('RelayerRegistry', function () {
|
|
const TornAddress = '0x77777FeDdddFfC19Ff86DB637967013e6C6A116C'
|
|
|
|
it('Should deploy', async function () {
|
|
const RelayerRegistry = await ethers.getContractFactory('RelayerRegistry')
|
|
const relayerRegistry = await RelayerRegistry.deploy(TornAddress)
|
|
await relayerRegistry.deployed()
|
|
|
|
expect(await relayerRegistry.TORN()).to.equal(TornAddress)
|
|
})
|
|
})
|