mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-25 09:23:17 +01:00
34 lines
758 B
JavaScript
34 lines
758 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const {
|
|
bruToEnvJson
|
|
} = require('../src');
|
|
|
|
describe('bruToEnvJson', () => {
|
|
it('should parse .bru file contents', () => {
|
|
const requestFile = fs.readFileSync(path.join(__dirname, 'fixtures', 'env.bru'), 'utf8');
|
|
const result = bruToEnvJson(requestFile);
|
|
|
|
expect(result).toEqual({
|
|
"variables": [{
|
|
"enabled": true,
|
|
"name": "host",
|
|
"value": "https://www.google.com",
|
|
"type": "text"
|
|
}, {
|
|
"enabled": true,
|
|
"name": "jwt",
|
|
"value": "secret",
|
|
"type": "text"
|
|
}, {
|
|
"enabled": false,
|
|
"name": "Content-type",
|
|
"value": "application/json",
|
|
"type": "text"
|
|
}]
|
|
});
|
|
});
|
|
});
|
|
|