mirror of
https://github.com/gchq/CyberChef
synced 2025-01-22 17:25:10 +00:00
linting
This commit is contained in:
parent
5fb50a1759
commit
5efc3f15f2
3 changed files with 6 additions and 8 deletions
|
@ -76,8 +76,8 @@ export function wrap(Operation) {
|
|||
|
||||
/**
|
||||
* First draft
|
||||
* @param input
|
||||
* @param type
|
||||
* @param input
|
||||
* @param type
|
||||
*/
|
||||
export async function translateTo(input, type) {
|
||||
const dish = new Dish();
|
||||
|
@ -89,8 +89,8 @@ export async function translateTo(input, type) {
|
|||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param searchTerm
|
||||
*
|
||||
* @param searchTerm
|
||||
*/
|
||||
export function search(searchTerm) {
|
||||
|
||||
|
|
|
@ -9,8 +9,6 @@
|
|||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
import assert from "assert";
|
||||
|
||||
/**
|
||||
* it - wrapper for assertions to provide a helpful description
|
||||
* to the TestRegister
|
||||
|
@ -27,7 +25,7 @@ import assert from "assert";
|
|||
* assert.equal(1,1)
|
||||
* assert.notEqual(3,4)
|
||||
* })
|
||||
*
|
||||
*
|
||||
* @example
|
||||
* // async assertions
|
||||
* it("should handle async", async () => {
|
||||
|
|
|
@ -35,7 +35,7 @@ TestRegister.addApiTests([
|
|||
try {
|
||||
const fail = chef.setUnion("1");
|
||||
// shouldnt get here
|
||||
assert(false);
|
||||
assert(!fail || false);
|
||||
} catch (e) {
|
||||
assert(true);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue