1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-08 15:19:40 -05:00
This commit is contained in:
Bert Belder 2018-08-28 02:00:54 +02:00
parent 4dbe5eabe9
commit 7e3d9f8f2b
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461
2 changed files with 5 additions and 3 deletions

View file

@ -78,5 +78,8 @@ test(function consoleTestStringifyCircular() {
assertEqual(stringify(function f() {}), "[Function: f]"); assertEqual(stringify(function f() {}), "[Function: f]");
assertEqual(stringify(nestedObj), nestedObjExpected); assertEqual(stringify(nestedObj), nestedObjExpected);
assertEqual(stringify(JSON), "{}"); assertEqual(stringify(JSON), "{}");
assertEqual(stringify(console), "Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }"); assertEqual(
stringify(console),
"Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }"
);
}); });

View file

@ -28,8 +28,7 @@ def main():
def write_lastchange(): def write_lastchange():
run([ run([
sys.executable, "build/util/lastchange.py", "-o", sys.executable, "build/util/lastchange.py", "-o",
"build/util/LASTCHANGE", "--source-dir", root_path, "build/util/LASTCHANGE", "--source-dir", root_path, "--filter="
"--filter="
]) ])