thenavisapp
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
17 lines (12 loc) • 369 B
JavaScript
// NSwap.test.js
const NSwap = artifacts.require("NSwap");
contract("NSwap", (accounts) => {
let nSwapInstance;
before(async () => {
nSwapInstance = await NSwap.deployed();
});
it("should deploy NSwap contract", async () => {
assert.exists(nSwapInstance.address);
});
// Add more tests based on your contract's functionality
});