Skip to content

Commit

Permalink
update begin.domains test
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeseda committed Dec 22, 2023
1 parent 99c3403 commit 8c014ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"devDependencies": {
"@architect/eslint-config": "^2.1.2",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint": "^8.56.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.2"
},
Expand Down
5 changes: 4 additions & 1 deletion test/domains-test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ e.config()
const token = process.env.ACCESS_TOKEN || '123'

test('begin', t => {
t.plan(10)
t.plan(13)
t.ok(begin, 'begin')
t.ok(begin.domains, 'begin.domains')
t.ok(begin.domains.list, 'begin.domains.list')
t.ok(begin.domains.add, 'begin.domains.add')
t.ok(begin.domains.remove, 'begin.domains.remove')
t.ok(begin.domains.check, 'begin.domains.check')
t.ok(begin.domains.link, 'begin.domains.link')
t.ok(begin.domains.unlink, 'begin.domains.unlink')
t.ok(begin.domains.validate, 'begin.domains.validate')
t.ok(begin.domains.records, 'begin.domains.records')
t.ok(begin.domains.records.list, 'begin.domains.records.list')
t.ok(begin.domains.records.upsert, 'begin.domains.records.upsert')
Expand Down

0 comments on commit 8c014ca

Please sign in to comment.