We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de434d3 commit 5b44826Copy full SHA for 5b44826
tests/all.test.js
@@ -1,6 +1,13 @@
1
var cee = require("../lib/index");
2
3
describe("Testing Basic Languages", () => {
4
+ test("Python3", () => {
5
+ return cee
6
+ .execute("print('123')", cee.languages.PYTHON3)
7
+ .then((response) => {
8
+ expect(response).toBe("123");
9
+ });
10
11
test("Bash", () => {
12
return cee.execute("echo 123", cee.languages.BASH).then((response) => {
13
expect(response).toBe("123");
0 commit comments