Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

269
Views
Truffle tests, Type Error: it is not a function

I am new to testing with java script and also new to writing smart contracts. I have watched some tutorials regarding writing the tests and tried to orientate my test with for example the Metacoin example from truffle.

Now when I try to run my basic first test to get the total supply of my ERC20 token, i get the following error message:

  1. Uncaught error outside test suite

0 passing (2ms) 1 failing

  1. Uncaught error outside test suite: Uncaught TypeError: it is not a function

My test code looks like this:

const { assert } = require("console");
const { it } = require("ethers/wordlists");

const charytoken = artifacts.require("CharyToken"); 

contract("CharyToken test", async accounts => {
    it("should get the Balance of CT of this contract", async() => {
        const instance = await charytoken.deployed(); 
        const ctbalance = await instance.totalSupply.call(); 
        assert.equal(ctbalance.valueOf(), 10000000000000000000000);
    }); 
}); 

If anyone knows what I am doing wrong/ I am missing, I would appreachiate help a lot!

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

It's because you imported the wrong it. It's not from ethers/wordlist

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!