first version
This commit is contained in:
1
test/test.d.ts
vendored
Normal file
1
test/test.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
import 'typings-test';
|
7
test/test.js
Normal file
7
test/test.js
Normal file
@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
require("typings-test");
|
||||
describe('smartacme', function () {
|
||||
let testAcme;
|
||||
it('should create a valid instance');
|
||||
});
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHdCQUFxQjtBQU1yQixRQUFRLENBQUMsV0FBVyxFQUFFO0lBQ2xCLElBQUksUUFBNkIsQ0FBQTtJQUNqQyxFQUFFLENBQUMsZ0NBQWdDLENBQUMsQ0FBQTtBQUN4QyxDQUFDLENBQUMsQ0FBQSJ9
|
10
test/test.ts
Normal file
10
test/test.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import 'typings-test'
|
||||
import * as should from 'should'
|
||||
|
||||
// import the module to test
|
||||
import * as smartacme from '../dist/index'
|
||||
|
||||
describe('smartacme', function(){
|
||||
let testAcme: smartacme.smartacme
|
||||
it('should create a valid instance')
|
||||
})
|
Reference in New Issue
Block a user