Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/runners/swift.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

const shovel = require('../shovel');
const exec = require('child_process').exec;
const fs = require('fs');
Expand Down Expand Up @@ -33,7 +35,7 @@ module.exports.run = function run(opts, cb) {

testIntegration: function(runCode, fail) {
if (opts.testFramework != 'xctest')
throw new Error(`test framework ${test.framework} is not supported`);
throw new Error(`Test framework '${opts.testFramework}' is not supported`);

const args = [
"swiftc",
Expand Down