mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-07 16:44:27 +01:00
chore: renamed test files
This commit is contained in:
parent
e7d332c7d7
commit
342a39bcb4
@ -1,7 +1,11 @@
|
||||
const bruToJsonV2 = require("../src/index");
|
||||
/**
|
||||
* This test file is used to test the text parser.
|
||||
*/
|
||||
|
||||
const parser = require("../src/index");
|
||||
|
||||
const assertSingleHeader = (input) => {
|
||||
const output = bruToJsonV2(input);
|
||||
const output = parser(input);
|
||||
|
||||
const expected = {
|
||||
"headers": [{
|
||||
@ -19,7 +23,7 @@ describe("headers parser", () => {
|
||||
headers {
|
||||
}`;
|
||||
|
||||
const output = bruToJsonV2(input);
|
||||
const output = parser(input);
|
||||
const expected = {
|
||||
"headers": []
|
||||
};
|
||||
@ -62,7 +66,7 @@ headers {
|
||||
hello:
|
||||
}`;
|
||||
|
||||
const output = bruToJsonV2(input);
|
||||
const output = parser(input);
|
||||
const expected = {
|
||||
"headers": [{
|
||||
"name": "hello",
|
||||
@ -80,7 +84,7 @@ headers {
|
||||
Authorization: JWT secret
|
||||
}`;
|
||||
|
||||
const output = bruToJsonV2(input);
|
||||
const output = parser(input);
|
||||
const expected = {
|
||||
"headers": [{
|
||||
"name": "content-type",
|
||||
@ -101,7 +105,7 @@ headers:disabled {
|
||||
content-type: application/json
|
||||
}`;
|
||||
|
||||
const output = bruToJsonV2(input);
|
||||
const output = parser(input);
|
||||
const expected = {
|
||||
"headers": [{
|
||||
"name": "content-type",
|
||||
@ -119,7 +123,7 @@ headers {
|
||||
foo
|
||||
}`;
|
||||
|
||||
expect(() => bruToJsonV2(input)).toThrow();
|
||||
expect(() => parser(input)).toThrow();
|
||||
});
|
||||
|
||||
it("should throw error on invalid header", () => {
|
||||
@ -128,7 +132,7 @@ headers {
|
||||
hello: world
|
||||
foo: bar}`;
|
||||
|
||||
expect(() => bruToJsonV2(input)).toThrow();
|
||||
expect(() => parser(input)).toThrow();
|
||||
});
|
||||
});
|
||||
|
@ -1,3 +1,6 @@
|
||||
/**
|
||||
* This test file is used to test the text parser.
|
||||
*/
|
||||
const parser = require("../src/index");
|
||||
|
||||
describe("script parser", () => {
|
Loading…
Reference in New Issue
Block a user