Skip to content

Commit

Permalink
feat: angry jelly pet (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
csuvajit committed Apr 17, 2024
1 parent 772cb37 commit b0cf841
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clashofclans.js",
"version": "3.3.5",
"version": "3.3.8",
"description": "JavaScript library for interacting with the Clash of Clans API",
"author": "https://clashofclans.js.org",
"license": "MIT",
Expand Down
18 changes: 18 additions & 0 deletions src/login.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Client } from './client/Client';

describe('root', () => {
const client = new Client({ restRequestTimeout: 30_000 });

it('should return a player', async () => {
const result = await client.login({
email: process.env.EMAIL!,
password: process.env.PASSWORD!,
keyCount: 10,
keyName: 'prod_key'
});
console.log({
result: result.join(',')
});
expect(result).toBeDefined();
}, 60_000);
});
2 changes: 1 addition & 1 deletion src/util/raw.json

Large diffs are not rendered by default.

1 comment on commit b0cf841

@csuvajit
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for clashofclans-js ready!

✅ Preview
https://clashofclans-qk0xqig45-suvajits-projects-c2b2fd4a.vercel.app

Built with commit b0cf841.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.