-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6204fef
commit 3926c0c
Showing
3 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Transaction } from '../../types'; | ||
import { detectENS } from './registrar'; | ||
import catchall0xc35c01ac from '../../test/transactions/catchall-0xc35c01ac.json'; | ||
|
||
describe('ENS Registrar', () => { | ||
it('Should not detect as ens registrar', () => { | ||
const ensRegistrar1 = detectENS(catchall0xc35c01ac as Transaction); | ||
expect(ensRegistrar1).toBe(false); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Transaction } from '../../types'; | ||
import { detectReverseENS } from './reverse'; | ||
import catchall0xc35c01ac from '../../test/transactions/catchall-0xc35c01ac.json'; | ||
|
||
describe('ENS Reverse', () => { | ||
it('Should not detect as ens reverse', () => { | ||
const ensReverse1 = detectReverseENS(catchall0xc35c01ac as Transaction); | ||
expect(ensReverse1).toBe(false); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters