Skip to content

Commit 6d56a67

Browse files
committed
Use AT5
1 parent fc236e1 commit 6d56a67

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
.lock-wscript
44
.DS_Store
55
.project
6-
.DS_Store
76
.vscode
87
.eslintrc
98
node_modules/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
"url": "https://github.com/node-3d/deps-freeimage-raub.git"
4949
},
5050
"dependencies": {
51-
"addon-tools-raub": "https://github.com/node-3d/addon-tools-raub.git"
51+
"addon-tools-raub": "5.0.0"
5252
}
5353
}

test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ const deps = require('..');
77

88
describe('Paths', () => {
99

10-
it(`exports an object`, () => {
10+
it('exports an object', () => {
1111
expect(deps).to.be.an('object');
1212
});
1313

14-
it(`exports "bin" string`, () => {
14+
it('exports "bin" string', () => {
1515
expect(deps.bin).to.be.a('string');
1616
});
1717

18-
it(`exports "include" string`, () => {
18+
it('exports "include" string', () => {
1919
expect(deps.include).to.be.a('string');
2020
});
2121

22-
it(`has installed the "bin" directory`, () => {
22+
it('has installed the "bin" directory', () => {
2323
expect(require('fs').existsSync(deps.bin)).to.be.true;
2424
});
2525

0 commit comments

Comments
 (0)