Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ module.exports = {
Next, you can run the following truffle command.

```bash
$ truffle run syntest-solidity [options]
$ truffle run @syntest/solidity [options]
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion docker/templates/truffle-config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
plugins: ["syntest-solidity"],
plugins: ["@syntest/solidity"],
};
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syntest/solidity",
"version": "0.1.0",
"version": "0.1.1",
"description": "SynTest Solidity is a tool for automatically generating test cases for the Solidity platform",
"keywords": [
"syntest",
Expand All @@ -20,6 +20,7 @@
"types": "dist/index.d.ts",
"files": [
"/dist",
"/src/**/*.js",
"/api.js",
"/NOTICE"
],
Expand Down
2 changes: 1 addition & 1 deletion src/util/fileSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export async function createTruffleConfig() {
filepath,
`module.exports = {
test_directory: ".syntest/tests",
plugins: ["syntest-solidity"]
plugins: ["@syntest/solidity"]
};`
);
}
Expand Down
2 changes: 1 addition & 1 deletion truffle-plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"commands": {
"syntest-solidity": "truffle.plugin.js"
"@syntest/solidity": "truffle.plugin.js"
}
}