Skip to content

Commit

Permalink
Adding test framework to fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarbett committed Oct 15, 2023
1 parent bdd31ef commit a2d56a4
Show file tree
Hide file tree
Showing 6 changed files with 1,049 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/create-zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const yargs = require('yargs/yargs');
const { hideBin } = require('yargs/helpers');
const UltraApi = require('../src/ultradns-node/udns');
const UltraApi = require('../src/ultradns-node');

async function createZone(client, domain) {
const accountData = await client.get("/accounts");
Expand Down
2 changes: 1 addition & 1 deletion examples/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const yargs = require('yargs/yargs');
const { hideBin } = require('yargs/helpers');
const UltraApi = require('../src/ultradns-node/udns');
const UltraApi = require('../src/ultradns-node');

async function getStatus() {
// Parse command line arguments
Expand Down
Loading

0 comments on commit a2d56a4

Please sign in to comment.