Skip to content

Commit 5b44826

Browse files
committed
add python to test
1 parent de434d3 commit 5b44826

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/all.test.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
var cee = require("../lib/index");
22

33
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+
});
411
test("Bash", () => {
512
return cee.execute("echo 123", cee.languages.BASH).then((response) => {
613
expect(response).toBe("123");

0 commit comments

Comments
 (0)