Skip to content

Commit

Permalink
Add stubs for Wxrd and MDWxrd spec
Browse files Browse the repository at this point in the history
  • Loading branch information
ENTOMDT committed Jun 26, 2022
1 parent 7c5f6b0 commit 93bc0dd
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/myriad/MDWxrd.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/**
* @file Wxrd is the main controller for the Basecamp operations
* of Myriad.
*/

// TODO: change all instances of Wxrd to MDWxrd
const { Wxrd } = require('./Wxrd');

const wxrd = new Wxrd('test');

it('should have at least one spec', () => {

expect(true).toBe(true);

});
14 changes: 14 additions & 0 deletions src/myriad/Wxrd.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* @file Wxrd is the main controller for the Basecamp operations
* of Myriad.
*/

const { Wxrd } = require('./Wxrd');

const wxrd = new Wxrd('test');

it('should have at least one spec', () => {

expect(true).toBe(true);

});

0 comments on commit 93bc0dd

Please sign in to comment.